We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c59e63 commit f0c174eCopy full SHA for f0c174e
jsonq.go
@@ -203,13 +203,13 @@ func (j *JSONQ) WhereNotNil(key string) *JSONQ {
203
return j.Where(key, signNotEq, nil)
204
}
205
206
-// WhereIn is an alias for where('key', 'in', []string{"a", "b"})
+// WhereIn is an alias for where("key", "in", []string{"a", "b"})
207
func (j *JSONQ) WhereIn(key string, val interface{}) *JSONQ {
208
j.Where(key, signIn, val)
209
return j
210
211
212
-// WhereNotIn is an alias for where('key', 'notIn', []string{"a", "b"})
+// WhereNotIn is an alias for where("key", "notIn", []string{"a", "b"})
213
func (j *JSONQ) WhereNotIn(key string, val interface{}) *JSONQ {
214
j.Where(key, signNotIn, val)
215
0 commit comments