From 9f131682a6869882d6c54bff039038bb9c287e36 Mon Sep 17 00:00:00 2001 From: Victor Wang <45219858+vdoubleu@users.noreply.github.com> Date: Tue, 21 Jul 2020 15:42:37 -0400 Subject: [PATCH] fix small error in read_zip.md --- documentation/howto/read_zip.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/howto/read_zip.md b/documentation/howto/read_zip.md index cb34f004..382307f1 100644 --- a/documentation/howto/read_zip.md +++ b/documentation/howto/read_zip.md @@ -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); }); });