Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangruber committed Jan 26, 2017
1 parent 8d19705 commit ad93dbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ DB.prototype._open = function (opts, cb) {
}

DB.prototype._close = function (cb) {
this.db.close(opts, cb)
this.db.close(cb)
}

DB.prototype._put = function (key, value, opts, cb) {
Expand Down Expand Up @@ -93,7 +93,7 @@ function Batch (db, codec) {
this.batch = db.batch()
}

inherits(batch, AbstractChainedBatch)
inherits(Batch, AbstractChainedBatch)

Batch.prototype._put = function (key, value) {
key = this.codec.encodeKey(key)
Expand Down

0 comments on commit ad93dbd

Please sign in to comment.