Minor fix (fixes #12).

This commit is contained in:
Julien Fontanet 2013-09-11 12:59:47 +02:00
parent ac69349822
commit f7c793ce8c

View File

@ -64,7 +64,7 @@ Memory.prototype._get = function (properties) {
return _.values(this.models);
}
return _.where(this.model, properties);
return _.where(this.models, properties);
};
Memory.prototype._remove = function (ids) {