From 4955f4bf8896509d724993c05058d61edd405993 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Tue, 25 Aug 2020 21:07:36 -0800 Subject: [PATCH] Fix bug due to wrong quotes --- djpianalto.com/goff/exts/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djpianalto.com/goff/exts/init.go b/djpianalto.com/goff/exts/init.go index bc11dcc..1c99737 100644 --- a/djpianalto.com/goff/exts/init.go +++ b/djpianalto.com/goff/exts/init.go @@ -197,7 +197,7 @@ func AddCommandHandlers(h *disgoman.CommandManager) { }) _ = h.AddCommand(&disgoman.Command{ Name: "ParseRPN", - Aliases: []string{'PRPN'}, + Aliases: []string{"PRPN"}, Description: "Parse RPN string and return the result", OwnerOnly: false, Hidden: false,