@@ -196,21 +196,21 @@ NOTE: Note that for version 1.0 we currently don't support referring to paramete
196
196
| `findByAgeNotIn(Collection ages)`
197
197
| `{"age" : {"$nin" : [ages...]}}`
198
198
199
- | `IsNotNull, NotNull`
199
+ | `IsNotNull`, ` NotNull`
200
200
| `findByFirstnameNotNull()`
201
201
| `{"firstname" : {"$ne" : null}}`
202
202
203
- | `IsNull, Null`
203
+ | `IsNull`, ` Null`
204
204
| `findByFirstnameNull()`
205
205
| `{"firstname" : null}`
206
206
207
207
| `Like`, `StartingWith`, `EndingWith`
208
208
| `findByFirstnameLike(String name)`
209
- | `{"firstname" : name} ( name as regex)`
209
+ | `{"firstname" : name} (name as regex)`
210
210
211
- | `NotLike`, `IsNotLike`, `EndingWith`
211
+ | `NotLike`, `IsNotLike`
212
212
| `findByFirstnameNotLike(String name)`
213
- | `{"firstname" : { "$not" : name }} ( name as regex)`
213
+ | `{"firstname" : { "$not" : name }} (name as regex)`
214
214
215
215
| `Containing` on String
216
216
| `findByFirstnameContaining(String name)`
@@ -260,11 +260,11 @@ NOTE: Note that for version 1.0 we currently don't support referring to paramete
260
260
| `findByLocationWithin(Box box)`
261
261
| `{"location" : {"$geoWithin" : {"$box" : [ [x1, y1], x2, y2]}}}`
262
262
263
- | `IsTrue, True`
263
+ | `IsTrue`, ` True`
264
264
| `findByActiveIsTrue()`
265
265
| `{"active" : true}`
266
266
267
- | `IsFalse, False`
267
+ | `IsFalse`, ` False`
268
268
| `findByActiveIsFalse()`
269
269
| `{"active" : false}`
270
270
0 commit comments