Skip to content

Commit 23e9175

Browse files
authored
Update article.md
1 parent bb97418 commit 23e9175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

5-network/09-resume-upload/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To resume upload, we need to know *exactly* the number of bytes received by the
5757
xhr.setRequestHeader('X-Start-Byte', startByte);
5858
5959
xhr.upload.onprogress = (e) => {
60-
console.log(`Отправлено ${startByte + e.loaded} из ${startByte + e.total}`);
60+
console.log(`Uploaded ${startByte + e.loaded} of ${startByte + e.total}`);
6161
};
6262
6363
// file can be from input.files[0] or another source

0 commit comments

Comments
 (0)