zlib: Typo. s/opt/opts/

v0.7.4-release
isaacs 2011-09-26 11:50:20 -07:00
parent c26cf84a08
commit c828ded0c2
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ exports.createUnzip = function(o) {
// generic zlib
// minimal 2-byte header
function Deflate(opts) {
if (!(this instanceof Deflate)) return new Deflate(opt);
if (!(this instanceof Deflate)) return new Deflate(opts);
Zlib.call(this, opts, binding.Deflate);
}