Skip to content

Commit 25d401e

Browse files
authored
Merge pull request #703 from vdoubleu/patch-1
Fix small error in read_zip.md
2 parents 7bbcb38 + 9f13168 commit 25d401e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

documentation/howto/read_zip.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ request({
196196
}
197197
JSZip.loadAsync(body).then(function (zip) {
198198
return zip.file("content.txt").async("string");
199-
}).then(function () {
199+
}).then(function (text) {
200200
console.log(text);
201201
});
202202
});

0 commit comments

Comments
 (0)