Skip to content

Commit

Permalink
fix small error in read_zip.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vdoubleu committed Jul 21, 2020
1 parent 7bbcb38 commit 9f13168
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 9f13168

Please sign in to comment.