Navigation Menu

Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 22, 2012
1 parent d6ab9fb commit bc14bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wrapped-nroonga.js
Expand Up @@ -89,7 +89,7 @@ Context.prototype = {
tableExistsSync: function(tableName) {
var tables = this.tableListSync();
return tables.some(function(table) {
return table.name == tableName);
return table.name == tableName;
});
},

Expand Down

0 comments on commit bc14bd2

Please sign in to comment.