From b852cfef7f92ec5a28f19da45e4c27da77e40388 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Sun, 29 Nov 2020 05:04:39 -0300 Subject: [PATCH] Update article.md --- 5-network/03-fetch-progress/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/03-fetch-progress/article.md b/5-network/03-fetch-progress/article.md index 67630be7..f5a64da5 100644 --- a/5-network/03-fetch-progress/article.md +++ b/5-network/03-fetch-progress/article.md @@ -111,4 +111,4 @@ At the end we have the result (as a string or a blob, whatever is convenient), a Once again, please note, that's not for *upload* progress (no way now with `fetch`), only for *download* progress. -Also, if we the size is unknown, we should check `receivedLength` in the loop and break it once it reaches a certain limit. So that the `chunks` won't overflow the memory. \ No newline at end of file +Also, if the size is unknown, we should check `receivedLength` in the loop and break it once it reaches a certain limit. So that the `chunks` won't overflow the memory.