Merge pull request #17 from sfingram/master

Minor typo in docs
This commit is contained in:
David Beazley 2018-11-18 06:48:46 -06:00 committed by GitHub
commit 66b6bd73f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1353,7 +1353,7 @@ like this::
def expr(self, p): def expr(self, p):
return ('number-expression', p.NUMBER) return ('number-expression', p.NUMBER)
Another approach is to create a set of data structure for different Another approach is to create a set of data structures for different
kinds of abstract syntax tree nodes and create different node types kinds of abstract syntax tree nodes and create different node types
in each rule:: in each rule::