From 33846eef127b5363fa3a26bb9d3243bd854d7926 Mon Sep 17 00:00:00 2001 From: Still Hsu <5843208+Still34@users.noreply.github.com> Date: Tue, 21 Jan 2020 00:58:51 +0800 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: Chris Johnston --- docs/guides/commands/namedarguments.md | 2 +- src/Discord.Net.Core/Entities/Messages/IMessage.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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.