Skip to content

Commit

Permalink
clarify examples. see #90
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoshwolfe committed Aug 28, 2018
1 parent 51010ce commit d3fa8a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/dump.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

var yauzl = require("../");
var yauzl = require("../"); // replace with: var yauzl = require("yauzl");

var paths = [];
var dumpContents = true;
Expand Down
2 changes: 1 addition & 1 deletion examples/promises.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// While async/await is still experimental, you also need
// to run this example with --harmony-async-await

let yauzl = require("../");
let yauzl = require("../"); // replace with: let yauzl = require("yauzl");

let simpleZipBuffer = new Buffer([
80,75,3,4,20,0,8,8,0,0,134,96,146,74,0,0,
Expand Down
2 changes: 1 addition & 1 deletion examples/unzip.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

var yauzl = require("../");
var yauzl = require("../"); // replace with: var yauzl = require("yauzl");
var path = require("path");
var fs = require("fs");
var util = require("util");
Expand Down

0 comments on commit d3fa8a3

Please sign in to comment.