From a6a396204419e693de7a4f479746601eb1a15b00 Mon Sep 17 00:00:00 2001 From: sammyette <38820196+TorchedSammy@users.noreply.github.com> Date: Tue, 28 Sep 2021 22:54:04 -0400 Subject: [PATCH] fix: correct url to github repo and add newline after error --- golibs/fs/fs.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/golibs/fs/fs.go b/golibs/fs/fs.go index 646d92b..59da056 100644 --- a/golibs/fs/fs.go +++ b/golibs/fs/fs.go @@ -36,8 +36,8 @@ func cd(L *lua.LState) int { case "no such file or directory": LuaErr(L, 1) default: - fmt.Printf("Found unhandled error case: %s", e) - fmt.Printf("Report this at https://github.com/Hilbis/Hilbish/issues with the title being: \"fs: unahndled error case %s\", and show what caused it.\n", e) + fmt.Printf("Found unhandled error case: %s\n", e) + fmt.Printf("Report this at https://github.com/Rosettea/Hilbish/issues with the title being: \"fs: unhandled error case %s\", and show what caused it.\n", e) LuaErr(L, 213) } }