Skip to content

Commit 4f756bb

Browse files
authored
Merge pull request #1708 from dpyzo0o/master
Fix typo
2 parents 01b3ce6 + 92658d2 commit 4f756bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

5-network/03-fetch-progress/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ Let's explain that step-by-step:
107107
let blob = new Blob(chunks);
108108
```
109109

110-
At we end we have the result (as a string or a blob, whatever is convenient), and progress-tracking in the process.
110+
At the end we have the result (as a string or a blob, whatever is convenient), and progress-tracking in the process.
111111

112112
Once again, please note, that's not for *upload* progress (no way now with `fetch`), only for *download* progress.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To resume upload, we need to know *exactly* the number of bytes received by the
4444
4545
This assumes that the server tracks file uploads by `X-File-Id` header. Should be implemented at server-side.
4646
47-
If the file don't yet exist at the server, then the server response should be `0`
47+
If the file doesn't yet exist at the server, then the server response should be `0`
4848

4949
3. Then, we can use `Blob` method `slice` to send the file from `startByte`:
5050
```js

0 commit comments

Comments
 (0)