Skip to content

Commit

Permalink
Merge pull request #703 from vdoubleu/patch-1
Browse files Browse the repository at this point in the history
Fix small error in read_zip.md
  • Loading branch information
Stuk committed Jul 24, 2020
2 parents 7bbcb38 + 9f13168 commit 25d401e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/howto/read_zip.md
Expand Up @@ -196,7 +196,7 @@ request({
}
JSZip.loadAsync(body).then(function (zip) {
return zip.file("content.txt").async("string");
}).then(function () {
}).then(function (text) {
console.log(text);
});
});
Expand Down

0 comments on commit 25d401e

Please sign in to comment.