Skip to content
This repository has been archived by the owner on Feb 13, 2022. It is now read-only.

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
elbart committed Feb 24, 2010
1 parent 1c5f7fb commit 59c6e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memcache.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Client.prototype.increment = function(key, value, callback) {

Client.prototype.decrement = function(key, value, callback) {
value = value || 1;
return this.query('decr ' + key + ' ' + value, 'decr'. callback);
return this.query('decr ' + key + ' ' + value, 'decr', callback);
};

Client.prototype.handle_received_data = function () {
Expand Down

0 comments on commit 59c6e95

Please sign in to comment.