DATAMONGO-1322 - Polishing.

Convert lineendings from CRLF to LF. Reduce validator implementations visibility to package. Extend Javadoc. Slight rewording in reference documentation.

Original pull request: #525.
Related pull request: #511.
Related ticket: DATACMNS-1835.
This commit is contained in:
Mark Paluch
2018-01-16 12:03:17 +01:00
parent 36614ef0ab
commit c3dbce4d9e
10 changed files with 239 additions and 245 deletions

View File

@@ -99,7 +99,7 @@ Spring Data MongoDB supports MongoDB's specific JSON schema implementation to de
[[mongo.mongo-3.validation.query-expression]]
==== Query Expression Validation
Next to the <<mongo.mongo-3.validation.json-schema>> as of version 3.2 MongoDB supports validating documents against a given query structure. The structure can be built using `Criteria` objects just the same way as they are used for defining queries.
Next to the <<mongo.mongo-3.validation.json-schema>>, MongoDB supports as of version 3.2 validating documents against a given structure described by a query. The structure can be built using `Criteria` objects just the same way as they are used for defining queries.
[source,java]
----