Skip to content

Commit

Permalink
Fixe h4 formatting in src/dom/README.md
Browse files Browse the repository at this point in the history
Markdown parsers expect headers to have a space between the hash symbols and the text. The missing space prevented `####Struct Example` from being rendered as an h4.
  • Loading branch information
ZachElkins authored Mar 14, 2024
1 parent 96a6fa5 commit 701fcc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ listSame1.equals(["Mercury", "Venus", "Earth", "Mars"]); // returns true
listSame1.equals(["Mercury", "Venus", "Earth"]); // returns false because the lists differ with one element "Mars"
```

####Struct Example
#### Struct Example
```javascript
let structSame1: Value = load(
"foo::bar::{" +
Expand Down

0 comments on commit 701fcc4

Please sign in to comment.