From 1992815b4113183bb48abb5a5981391179c36cc7 Mon Sep 17 00:00:00 2001 From: Pierre Dubouilh Date: Sun, 4 Oct 2020 16:41:33 +0200 Subject: [PATCH] Fixup typo Co-authored-by: Sharad Bhat --- src/gossa.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gossa.go b/src/gossa.go index a4d35fb..7807bc4 100755 --- a/src/gossa.go +++ b/src/gossa.go @@ -231,7 +231,7 @@ func main() { http.HandleFunc(*extraPath+"zip", zipRPC) http.HandleFunc("/", doContent) fs = http.StripPrefix(*extraPath, http.FileServer(http.Dir(initPath))) - fmt.Printf("Gossa startig on directory %s\nListening on http://%s:%s%s\n", initPath, *host, *port, *extraPath) + fmt.Printf("Gossa starting on directory %s\nListening on http://%s:%s%s\n", initPath, *host, *port, *extraPath) err = http.ListenAndServe(*host+":"+*port, nil) check(err) }