From 0984a65f47409fc3f1a924a06d63f32944be537f Mon Sep 17 00:00:00 2001 From: SubZero0 Date: Fri, 26 Jun 2020 17:14:12 -0300 Subject: [PATCH] Missed a bracket --- src/Discord.Net.Examples/Commands/CommandService.Examples.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Discord.Net.Examples/Commands/CommandService.Examples.cs b/src/Discord.Net.Examples/Commands/CommandService.Examples.cs index add383fc2..a094ebb3d 100644 --- a/src/Discord.Net.Examples/Commands/CommandService.Examples.cs +++ b/src/Discord.Net.Examples/Commands/CommandService.Examples.cs @@ -26,6 +26,7 @@ namespace Discord.Net.Examples.Commands : TypeReaderResult.FromError(CommandError.ObjectNotFound, "User not found."); return TypeReaderResult.FromError(CommandError.ParseFailed, "Couldn't parse input to ulong."); } + } #endregion }