不要怂,就是干,撸起袖子干!

Commit d58cd408 by Sascha Depold

fixed typo

1 parent 7d28d8e6
Showing with 2 additions and 2 deletions
...@@ -202,8 +202,8 @@ module.exports = (function() { ...@@ -202,8 +202,8 @@ module.exports = (function() {
tableNames.push(_tableName) tableNames.push(_tableName)
optAttributes = optAttributes.concat( optAttributes = optAttributes.concat(
Utils._.keys(dao.attributes).map(function(attr) { Utils._.keys(dao.attributes).map(function(attr) {
var identifer = [_tableName, Utils.addTicks(attr)] var identifier = [_tableName, Utils.addTicks(attr)]
return identifer.join('.') + ' AS ' + Utils.addTicks(identifer.join('.')) return identifier.join('.') + ' AS ' + Utils.addTicks(identifier.join('.'))
}) })
) )
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!