@@ -158,14 +158,14 @@ public static Criteria matchingDocumentStructure(MongoJsonSchema schema) {
158158 * <pre class="code">
159159 * expr(() -> Document.parse("{ $gt : [ '$spent', '$budget'] }")))
160160 * </pre>
161- *
161+ *
162162 * or an {@link org.springframework.data.mongodb.core.aggregation.AggregationExpression} which will be subject to
163163 * context (domain type) specific field mapping.
164164 *
165165 * <pre class="code">
166166 * expr(valueOf("amountSpent").greaterThan("budget"))
167167 * </pre>
168- *
168+ *
169169 * @param expression must not be {@literal null}.
170170 * @return new instance of {@link Criteria}.
171171 * @since 4.1
@@ -211,8 +211,7 @@ public Criteria is(@Nullable Object value) {
211211
212212 /**
213213 * Creates a criterion using {@literal null} equality comparison which matches documents that either contain the item
214- * field whose value is {@literal null} or that do not contain the item field.
215- * <br />
214+ * field whose value is {@literal null} or that do not contain the item field. <br />
216215 * Use {@link #isNullValue()} to only query for documents that contain the field whose value is equal to
217216 * {@link org.bson.BsonType#NULL}. <br />
218217 * Use {@link #exists(boolean)} to query for documents that do (not) contain the field.
@@ -228,10 +227,9 @@ public Criteria isNull() {
228227
229228 /**
230229 * Creates a criterion using a {@link org.bson.BsonType} comparison which matches only documents that contain the item
231- * field whose value is equal to {@link org.bson.BsonType#NULL}.
232- * <br />
233- * Use {@link #isNull()} to query for documents that contain the field with a {@literal null} value or do not contain the
234- * field at all. <br />
230+ * field whose value is equal to {@link org.bson.BsonType#NULL}. <br />
231+ * Use {@link #isNull()} to query for documents that contain the field with a {@literal null} value or do not contain
232+ * the field at all. <br />
235233 * Use {@link #exists(boolean)} to query for documents that do (not) contain the field.
236234 *
237235 * @return this.
@@ -659,8 +657,8 @@ public Criteria intersects(GeoJson geoJson) {
659657 * Creates a geo-spatial criterion using a {@literal $maxDistance} operation, for use with {@literal $near} or
660658 * {@literal $nearSphere}.
661659 * <p>
662- * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation
663- * (legacy vs. geoJson) as well as the target operation.
660+ * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation (legacy
661+ * vs. geoJson) as well as the target operation.
664662 *
665663 * @param maxDistance radians or meters
666664 * @return this.
@@ -682,8 +680,8 @@ public Criteria maxDistance(double maxDistance) {
682680 * Creates a geospatial criterion using a {@literal $minDistance} operation, for use with {@literal $near} or
683681 * {@literal $nearSphere}.
684682 * <p>
685- * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation
686- * (legacy vs. geoJson) as well as the target operation.
683+ * <strong>NOTE:</strong> The unit of measure for distance may depends on the used coordinate representation (legacy
684+ * vs. geoJson) as well as the target operation.
687685 *
688686 * @param minDistance radians or meters
689687 * @return this.
0 commit comments