From 1d6220187d237d6e76be3bbfa18ee7d76b3317e5 Mon Sep 17 00:00:00 2001 From: Hsu Still <341464@gmail.com> Date: Tue, 20 Mar 2018 17:27:47 +0800 Subject: [PATCH] Fix broken indent --- docs/faq/samples/commands/Remainder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.