We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9e5841 commit f3d3c33Copy full SHA for f3d3c33
1 file changed
README.md
@@ -34,7 +34,7 @@ TusUpload upload = new TusUpload(file);
34
// a connection to the remote server and doing the uploading.
35
TusUploader uploader = client.resumeOrCreateUpload(upload);
36
37
-// 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
38
// file has been fully uploaded the method will return -1
39
while(uploader.uploadChunk(1024 * 1024) > -1) {
40
// Calculate the progress using the total size of the uploading file and
0 commit comments