From 73a6000f106a7070bcccb91f9d05faeca19573e8 Mon Sep 17 00:00:00 2001 From: Konrad Wojas Date: Mon, 4 Jan 2021 15:29:18 +0800 Subject: [PATCH] Fix typo in error message --- mux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mux.go b/mux.go index 694056c..6474401 100644 --- a/mux.go +++ b/mux.go @@ -62,7 +62,7 @@ func NewHandler(server *Server) (http.Handler, error) { return nil, err } server.quotaManager = qm - log.Printf("Quota initialized, currenly using %.2f GiB", float64(qm.SpaceUsed())/GiB) + log.Printf("Quota initialized, currently using %.2f GiB", float64(qm.SpaceUsed())/GiB) } mux := http.NewServeMux()