Skip to content

Commit 659f9a0

Browse files
Fix typo in remove
1 parent 2327217 commit 659f9a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ var Base = Class.extend({
786786
* @return Promise(runSql)
787787
*/
788788
remove: function (table, ids, callback) {
789-
var sql = 'DELETE FROM ' + this._escapeDDL + table + +this._escapeDDL;
789+
var sql = 'DELETE FROM ' + this._escapeDDL + table + this._escapeDDL;
790790
var searchClause = '';
791791

792792
return this.runSql(sql + this.buildWhereClause(ids)).nodeify(callback);

0 commit comments

Comments
 (0)