Merge pull request #1613 from cesanta/typo

fix typo
This commit is contained in:
Sergey Lyubka 2022-07-02 11:15:43 +01:00 committed by GitHub
commit 1b57c56fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ var sendFileData = function(name, data, chunkSize) {
var url = '/upload?offset=' + offset + '&name=' + encodeURIComponent(name);
var ok;
setStatus(
'Upoading ' + name + ', bytes ' + offset + '..' +
'Uploading ' + name + ', bytes ' + offset + '..' +
(offset + chunk.length) + ' of ' + data.length);
fetch(url, opts)
.then(function(res) {