Skip to content

Commit 4da7955

Browse files
Update 5-network/03-fetch-progress/article.md
Co-authored-by: joaquinelio <joaquinelio@gmail.com>
1 parent b8de4d9 commit 4da7955

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const reader = response.body.getReader();
5353
const contentLength = +response.headers.get('Content-Length');
5454

5555
// Paso 3: leer los datos
56-
let receivedLength = 0; // cantidad de bytes recibidos en este momento
56+
let receivedLength = 0; // cantidad de bytes recibidos hasta el momento
5757
let chunks = []; // matriz de fragmentos binarios recibidos (comprende el cuerpo)
5858
while(true) {
5959
const {done, value} = await reader.read();

0 commit comments

Comments
 (0)