Skip to content

Commit 1341d96

Browse files
committed
DATAMONGO-1424 - Polishing.
Remove EndingWith from NotLike. Remove superfluous white-spaces. Split combined highlighted keywords to individual highlighting. Original pull request: #364.
1 parent 06f7bc6 commit 1341d96

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/main/asciidoc/reference/mongo-repositories.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -196,21 +196,21 @@ NOTE: Note that for version 1.0 we currently don't support referring to paramete
196196
| `findByAgeNotIn(Collection ages)`
197197
| `{"age" : {"$nin" : [ages...]}}`
198198

199-
| `IsNotNull, NotNull`
199+
| `IsNotNull`, `NotNull`
200200
| `findByFirstnameNotNull()`
201201
| `{"firstname" : {"$ne" : null}}`
202202

203-
| `IsNull, Null`
203+
| `IsNull`, `Null`
204204
| `findByFirstnameNull()`
205205
| `{"firstname" : null}`
206206

207207
| `Like`, `StartingWith`, `EndingWith`
208208
| `findByFirstnameLike(String name)`
209-
| `{"firstname" : name} ( name as regex)`
209+
| `{"firstname" : name} (name as regex)`
210210

211-
| `NotLike`, `IsNotLike`, `EndingWith`
211+
| `NotLike`, `IsNotLike`
212212
| `findByFirstnameNotLike(String name)`
213-
| `{"firstname" : { "$not" : name }} ( name as regex)`
213+
| `{"firstname" : { "$not" : name }} (name as regex)`
214214

215215
| `Containing` on String
216216
| `findByFirstnameContaining(String name)`
@@ -260,11 +260,11 @@ NOTE: Note that for version 1.0 we currently don't support referring to paramete
260260
| `findByLocationWithin(Box box)`
261261
| `{"location" : {"$geoWithin" : {"$box" : [ [x1, y1], x2, y2]}}}`
262262

263-
| `IsTrue, True`
263+
| `IsTrue`, `True`
264264
| `findByActiveIsTrue()`
265265
| `{"active" : true}`
266266

267-
| `IsFalse, False`
267+
| `IsFalse`, `False`
268268
| `findByActiveIsFalse()`
269269
| `{"active" : false}`
270270

0 commit comments

Comments
 (0)