From 1cee5eb0f3f222b5a688acd540463dd7ad04f2a0 Mon Sep 17 00:00:00 2001 From: Marius Date: Mon, 22 Feb 2016 11:55:56 +0100 Subject: [PATCH] Correct description of max-size flag --- cmd/tusd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tusd/main.go b/cmd/tusd/main.go index 0e5ec10..7b4889b 100644 --- a/cmd/tusd/main.go +++ b/cmd/tusd/main.go @@ -41,7 +41,7 @@ var stderr = log.New(os.Stderr, "[tusd] ", 0) func init() { flag.StringVar(&httpHost, "host", "0.0.0.0", "Host to bind HTTP server to") flag.StringVar(&httpPort, "port", "1080", "Port to bind HTTP server to") - flag.Int64Var(&maxSize, "max-size", 0, "Maximum size of uploads in bytes") + flag.Int64Var(&maxSize, "max-size", 0, "Maximum size of a single upload in bytes") flag.StringVar(&dir, "dir", "./data", "Directory to store uploads in") flag.Int64Var(&storeSize, "store-size", 0, "Size of space allowed for storage") flag.StringVar(&basepath, "base-path", "/files/", "Basepath of the HTTP server")