Merge pull request #470 from gotokatsuya/fix/typo_notin_comment
Fix typo at NotIn comment
This commit is contained in:
commit
a7c7afa0bf
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue