Browse Source

Fix broken indent

pull/988/head
Hsu Still 7 years ago
parent
commit
1d6220187d
No known key found for this signature in database GPG Key ID: 8601A145FDA95209
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/faq/samples/commands/Remainder.cs

+ 1
- 1
docs/faq/samples/commands/Remainder.cs View File

@@ -12,7 +12,7 @@ public Task EchoRemainderAsync([Remainder]string text) => ReplyAsync(text);
public Task EchoAsync(string text) => ReplyAsync(text); public Task EchoAsync(string text) => ReplyAsync(text);


// The message would be seen as having multiple parameters, // 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. // Wrapping the message in quotes solves this.
// This way, the system knows the entire message is to be parsed as a // This way, the system knows the entire message is to be parsed as a
// single String. // single String.


Loading…
Cancel
Save