Merge pull request #470 from gotokatsuya/fix/typo_notin_comment

Fix typo at NotIn comment
This commit is contained in:
Lunny Xiao 2016-10-17 18:10:05 +08:00 committed by GitHub
commit a7c7afa0bf
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ func (statement *Statement) In(column string, args ...interface{}) *Statement {
return statement return statement
} }
// NotIn generate "Where column IN (?) " statment // NotIn generate "Where column NOT IN (?) " statment
func (statement *Statement) NotIn(column string, args ...interface{}) *Statement { func (statement *Statement) NotIn(column string, args ...interface{}) *Statement {
if len(args) == 0 { if len(args) == 0 {
return statement return statement