tweak doc

This commit is contained in:
parrt 2016-11-19 12:57:07 -08:00
parent 35c6babd4a
commit 201925b2da
1 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ We will not document here how to refer to the runtime from your Python project,
## How do I run the generated lexer and/or parser?
Let's suppose that your grammar is named, as above, "MyGrammar". Let's suppose this parser comprises a rule named "StartRule". The tool will have generated for you the following files:
Let's suppose that your grammar is named, as above, "MyGrammar". Let's suppose this parser comprises a rule named "startRule". The tool will have generated for you the following files:
* MyGrammarLexer.py
* MyGrammarParser.py
@ -54,7 +54,7 @@ def main(argv):
lexer = MyGrammarLexer(input)
stream = CommonTokenStream(lexer)
parser = MyGrammarParser(stream)
tree = parser.StartRule()
tree = parser.startRule()
if __name__ == '__main__':
main(sys.argv)
@ -96,7 +96,7 @@ In order to execute this listener, you would simply add the following lines to t
```
...
tree = parser.StartRule() - only repeated here for reference
tree = parser.startRule() - only repeated here for reference
printer = KeyPrinter()
walker = ParseTreeWalker()
walker.walk(printer, tree)