Fix typo at NotIn comment
This commit is contained in:
parent
46eddd7696
commit
c17ed51823
|
@ -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