Update csharp-target.md
Correct the spelling of 2 members: `Default` and `Walk`
This commit is contained in:
parent
e73f72be73
commit
50c9faeb11
|
@ -86,7 +86,7 @@ In order to execute this listener, you would simply add the following lines to t
|
||||||
...
|
...
|
||||||
IParseTree tree = parser.StartRule() - only repeated here for reference
|
IParseTree tree = parser.StartRule() - only repeated here for reference
|
||||||
KeyPrinter printer = new KeyPrinter();
|
KeyPrinter printer = new KeyPrinter();
|
||||||
ParseTreeWalker.DEFAULT.walk(printer, tree);
|
ParseTreeWalker.Default.Walk(printer, tree);
|
||||||
```
|
```
|
||||||
|
|
||||||
Further information can be found from The Definitive ANTLR Reference book.
|
Further information can be found from The Definitive ANTLR Reference book.
|
||||||
|
|
Loading…
Reference in New Issue