Skip to content

Commit 2a16adc

Browse files
committed
Change super-class of SymbolNode from Parent to Text
- This also changes the type of PunctuationNode and WhiteSpaceNode. Closes GH-2.
1 parent 3e349fd commit 2a16adc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ interface WordNode < Parent {
8989

9090
### SymbolNode
9191

92-
Symbol ([Parent](#parent)) represents typographical devices like white space, punctuation, signs, and more, different from characers which represent sounds (like letters and numerals).
92+
Symbol ([Text](#text)) represents typographical devices like white space, punctuation, signs, and more, different from characers which represent sounds (like letters and numerals).
9393

9494
```
95-
interface SymbolNode < Parent {
95+
interface SymbolNode < Text {
9696
type: "SymbolNode";
9797
}
9898
```

0 commit comments

Comments
 (0)