improve doc

This commit is contained in:
HSunboy
2018-10-08 17:58:36 +08:00
parent 38a802d88b
commit a8dd96b39e
2 changed files with 28 additions and 7 deletions

View File

@ -19,10 +19,10 @@ function cleanSql(sql) {
/**
* 分割sql
* @param {String} sqlText
* @param {String} sql
*/
function splitSql(sqlText) {
return commentFilter.parse(sqlText).lines
function splitSql(sql) {
return commentFilter.parse(sql).lines
}
exports.filterComments = filterComments;