diff --git a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ConditionalOperators.java b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ConditionalOperators.java
index 95a0290ec..1979ec78f 100644
--- a/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ConditionalOperators.java
+++ b/spring-data-mongodb/src/main/java/org/springframework/data/mongodb/core/aggregation/ConditionalOperators.java
@@ -236,7 +236,7 @@ public class ConditionalOperators {
*
* @author Mark Paluch
* @see https://docs.mongodb.com/manual/reference/operator/aggregation/ifNull/
+ * "https://docs.mongodb.com/manual/reference/operator/aggregation/ifNull/">https://docs.mongodb.com/manual/reference/operator/aggregation/ifNull/
*/
public static class IfNull implements AggregationExpression {
@@ -252,7 +252,8 @@ public class ConditionalOperators {
/**
* Creates new {@link IfNull}.
*
- * @param fieldReference the field to check for a {@literal null} value, field reference must not be {@literal null}.
+ * @param fieldReference the field to check for a {@literal null} value, field reference must not be
+ * {@literal null}.
* @return never {@literal null}.
*/
public static ThenBuilder ifNull(String fieldReference) {
@@ -265,7 +266,7 @@ public class ConditionalOperators {
* Creates new {@link IfNull}.
*
* @param expression the expression to check for a {@literal null} value, field reference must not be
- * {@literal null}.
+ * {@literal null}.
* @return never {@literal null}.
*/
public static ThenBuilder ifNull(AggregationExpression expression) {
@@ -283,8 +284,8 @@ public class ConditionalOperators {
List