From a8e3a5f372502de8d90710128d6ef25071fb78c5 Mon Sep 17 00:00:00 2001 From: lyx0 <66651385+lyx0@users.noreply.github.com> Date: Mon, 18 Dec 2023 00:07:10 +0100 Subject: [PATCH] remove stray comma --- cmd/nourybot/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/nourybot/command.go b/cmd/nourybot/command.go index 65a7ec9..f4d371b 100644 --- a/cmd/nourybot/command.go +++ b/cmd/nourybot/command.go @@ -318,6 +318,6 @@ func (app *application) ListChannelCommands(channel string) string { } - reply := fmt.Sprintf("Channel commands: %s, General commands: %s", channelUrl, commandUrl) + reply := fmt.Sprintf("Channel commands: %s | General commands: %s", channelUrl, commandUrl) return reply }