We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8de4d9 commit 4da7955Copy full SHA for 4da7955
1 file changed
5-network/03-fetch-progress/article.md
@@ -53,7 +53,7 @@ const reader = response.body.getReader();
53
const contentLength = +response.headers.get('Content-Length');
54
55
// Paso 3: leer los datos
56
-let receivedLength = 0; // cantidad de bytes recibidos en este momento
+let receivedLength = 0; // cantidad de bytes recibidos hasta el momento
57
let chunks = []; // matriz de fragmentos binarios recibidos (comprende el cuerpo)
58
while(true) {
59
const {done, value} = await reader.read();
0 commit comments