From cf6fd55bbbf7308650433441d3a17c33caabff5d Mon Sep 17 00:00:00 2001 From: Marius Date: Sun, 27 Dec 2015 16:57:05 +0100 Subject: [PATCH] Correct usage of upload sizes --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e0d61b..f1a890c 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ TusUpload upload = new TusUpload(file); // a connection to the remote server and doing the uploading. TusUploader uploader = client.resumeOrCreateUpload(upload); -// Upload the file in chunks of 1KB as long as data is available. Once the +// Upload the file in chunks of 1MB as long as data is available. Once the // file has been fully uploaded the method will return -1 while(uploader.uploadChunk(1024 * 1024) > -1) { // Calculate the progress using the total size of the uploading file and