diff --git a/docs/guides/commands/namedarguments.md b/docs/guides/commands/namedarguments.md index 1b922ca27..61fa62ead 100644 --- a/docs/guides/commands/namedarguments.md +++ b/docs/guides/commands/namedarguments.md @@ -68,7 +68,7 @@ Named Argument Type has the following field, ```cs public IEnumerable Numbers { get; set; } ``` -then the command can be invoked as +then the command can be invoked with `.cmd numbers: "1, 2, 4, 8, 16, 32"` ## Additional Notes diff --git a/src/Discord.Net.Core/Entities/Messages/IMessage.cs b/src/Discord.Net.Core/Entities/Messages/IMessage.cs index aac526831..277be789b 100644 --- a/src/Discord.Net.Core/Entities/Messages/IMessage.cs +++ b/src/Discord.Net.Core/Entities/Messages/IMessage.cs @@ -226,7 +226,7 @@ namespace Discord /// collection. /// /// - /// Do not fetch too many users at once! This may cause unwanted preemptive rate limit or even actual + /// Do not fetch too many users at once! This may cause an unwanted preemptive rate limit or even an actual /// rate limit, causing your bot to freeze! /// /// This method will attempt to fetch the number of reactions specified under . @@ -234,7 +234,7 @@ namespace Discord /// . In other words, should the user request 500 reactions, /// and the constant is 100, the request will /// be split into 5 individual requests; thus returning 5 individual asynchronous responses, hence the need - /// of flattening. + /// for flattening. /// /// /// The following example gets the users that have reacted with the emoji 💕 to the message.