Skip to content

Commit f0c174e

Browse files
committed
Fix typo
1 parent 9c59e63 commit f0c174e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jsonq.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,13 +203,13 @@ func (j *JSONQ) WhereNotNil(key string) *JSONQ {
203203
return j.Where(key, signNotEq, nil)
204204
}
205205

206-
// WhereIn is an alias for where('key', 'in', []string{"a", "b"})
206+
// WhereIn is an alias for where("key", "in", []string{"a", "b"})
207207
func (j *JSONQ) WhereIn(key string, val interface{}) *JSONQ {
208208
j.Where(key, signIn, val)
209209
return j
210210
}
211211

212-
// WhereNotIn is an alias for where('key', 'notIn', []string{"a", "b"})
212+
// WhereNotIn is an alias for where("key", "notIn", []string{"a", "b"})
213213
func (j *JSONQ) WhereNotIn(key string, val interface{}) *JSONQ {
214214
j.Where(key, signNotIn, val)
215215
return j

0 commit comments

Comments
 (0)