Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 948575e

Browse files
committed
Fix command option description exceeding 100 characters
1 parent f78c963 commit 948575e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/IgnoreCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public sealed class IgnoreCommand
1818
public IgnoreCommand(Database database) => this._database = database;
1919

2020
[Command("add"), Description("Disable notifications from me.")]
21-
public ValueTask AddAsync(CommandContext context, [Description("Which channel to stop receiving notifications in. If empty, I'll stop sending notifications entirely.")] DiscordChannel? channel = null)
21+
public ValueTask AddAsync(CommandContext context, [Description("Which channel to stop receiving notifications in. If empty, I'll stop sending notifications entirely")] DiscordChannel? channel = null)
2222
{
2323
if (this._database.IsIgnoredUser(context.User.Id, context.Guild!.Id, channel?.Id))
2424
{

0 commit comments

Comments
 (0)