Fix typo in error message

This commit is contained in:
Konrad Wojas 2021-01-04 15:29:18 +08:00 committed by Alexander Neumann
parent e957e42336
commit 73a6000f10

2
mux.go
View file

@ -62,7 +62,7 @@ func NewHandler(server *Server) (http.Handler, error) {
return nil, err return nil, err
} }
server.quotaManager = qm 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() mux := http.NewServeMux()