浏览代码

Fix typo at NotIn comment

xormplus 9 年之前
父节点
当前提交
bc77654b3d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      statement.go

+ 1 - 1
statement.go

@@ -204,7 +204,7 @@ func (statement *Statement) In(column string, args ...interface{}) *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 {
 	if len(args) == 0 {
 		return statement