Fix grammar

This commit is contained in:
tyrrrz
2026-07-25 20:28:26 +03:00
parent 91a8daf3a7
commit 427c6021ac
17 changed files with 36 additions and 36 deletions
@@ -30,7 +30,7 @@ public abstract class DiscordCommandBase : ICommand
[CommandOption(
"respect-rate-limits",
Description = "Whether to respect advisory rate limits. "
+ "If disabled, only hard rate limits (i.e. 429 responses) will be respected."
+ "If disabled, only hard rate limits (i.e., 429 responses) will be respected."
)]
public bool ShouldRespectRateLimits { get; set; } = true;
@@ -59,7 +59,7 @@ public abstract class ExportCommandBase : DiscordCommandBase
"partition",
'p',
Description = "Split the output into partitions, each limited to the specified "
+ "number of messages (e.g. '100') or file size (e.g. '10mb')."
+ "number of messages (e.g., '100') or file size (e.g., '10mb')."
)]
public PartitionLimit PartitionLimit { get; set; } = PartitionLimit.Null;