diff --git a/docs/faq/samples/commands/Remainder.cs b/docs/faq/samples/commands/Remainder.cs index 728c7438c..a28c782e0 100644 --- a/docs/faq/samples/commands/Remainder.cs +++ b/docs/faq/samples/commands/Remainder.cs @@ -12,7 +12,7 @@ public Task EchoRemainderAsync([Remainder]string text) => ReplyAsync(text); public Task EchoAsync(string text) => ReplyAsync(text); // The message would be seen as having multiple parameters, -// while the method only accepts one. +// while the method only accepts one. // Wrapping the message in quotes solves this. // This way, the system knows the entire message is to be parsed as a // single String.