Skip to content

Commit

Permalink
Update files/en-us/web/api/fetch_api/using_fetch/index.md
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Chen <[email protected]>
  • Loading branch information
wbamberg and Josh-Cena authored Jun 22, 2024
1 parent fa701a4 commit ac66077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/en-us/web/api/fetch_api/using_fetch/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ async function* makeTextFileLineIterator(fileURL) {

if (startIndex < chunk.length) {
// Last line didn't end in a newline char
yield chunk.substr(startIndex);
yield chunk.substring(startIndex);
}
}

Expand Down

0 comments on commit ac66077

Please sign in to comment.