summaryrefslogtreecommitdiff
path: root/parser.go
diff options
context:
space:
mode:
Diffstat (limited to 'parser.go')
-rw-r--r--parser.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser.go b/parser.go
index d7daaf6..35c772b 100644
--- a/parser.go
+++ b/parser.go
@@ -7,9 +7,9 @@ import (
)
type Node struct {
- Token string
- Children []Node
- Result interface{}
+ Token string
+ Child []Node
+ Result interface{}
}
type Parser func(*State) Node