From 1370b3a5002ecdb64718fe789dcceebb8f8c53d4 Mon Sep 17 00:00:00 2001 From: Ben Barth Date: Tue, 7 May 2019 23:37:07 -0400 Subject: [PATCH] docs: Remove duplicate keyword in sample code (#231) --- docs/docs/help-text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/help-text.md b/docs/docs/help-text.md index 260024c3..e0e08475 100644 --- a/docs/docs/help-text.md +++ b/docs/docs/help-text.md @@ -115,7 +115,7 @@ interface. ```csharp class MyHelpTextGenerator : IHelpTextGenerator { - public void void Generate(CommandLineApplication application, TextWriter output) + public void Generate(CommandLineApplication application, TextWriter output) { output.WriteLine(@"To use this command, throw salt over your shoulder and spit twice."); }