From 50c9faeb11e10ff4129fa2a37360e614e0cf9e16 Mon Sep 17 00:00:00 2001 From: Rex Jaeschke Date: Sun, 4 Oct 2020 17:04:15 -0400 Subject: [PATCH] Update csharp-target.md Correct the spelling of 2 members: `Default` and `Walk` --- doc/csharp-target.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/csharp-target.md b/doc/csharp-target.md index a869a82f6..e2551aa7a 100644 --- a/doc/csharp-target.md +++ b/doc/csharp-target.md @@ -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 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.