Skip to content

Commit 9f13168

Browse files
authored
fix small error in read_zip.md
1 parent 7bbcb38 commit 9f13168

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)