Skip to content

Commit

Permalink
Merge pull request facebook#60 from sandfox/fix-approximate-size
Browse files Browse the repository at this point in the history
fix: incorrect scope in approximateSize func
  • Loading branch information
juliangruber committed Jan 23, 2013
2 parents 0fd2c8d + c39a15c commit 3545866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/levelup.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ LevelUP.prototype.approximateSize = function(start, end, callback) {
this.emit('error', err)
} else if (callback)
callback(null, size)
})
}.bind(this))
}

LevelUP.prototype.readStream = function (options) {
Expand Down

0 comments on commit 3545866

Please sign in to comment.