diff --git a/spring-core/src/main/java/org/springframework/util/ObjectUtils.java b/spring-core/src/main/java/org/springframework/util/ObjectUtils.java
index 231ee8aa20c2..b4ecbc5afa54 100644
--- a/spring-core/src/main/java/org/springframework/util/ObjectUtils.java
+++ b/spring-core/src/main/java/org/springframework/util/ObjectUtils.java
@@ -911,10 +911,10 @@ public static String nullSafeToString(@Nullable short[] array) {
*
Returns:
*
* - {@code "null"} if {@code obj} is {@code null}
- * - {@code"Optional.empty"} if {@code obj} is an empty {@link Optional}
- * - {@code"Optional[]"} if {@code obj} is a non-empty {@code Optional},
- * where {@code } is the result of invoking {@link #nullSafeConciseToString}
- * on the object contained in the {@code Optional}
+ * - {@code "Optional.empty"} if {@code obj} is an empty {@link Optional}
+ * - {@code "Optional[]"} if {@code obj} is a non-empty {@code Optional},
+ * where {@code } is the result of invoking this method on the object
+ * contained in the {@code Optional}
* - {@code "{}"} if {@code obj} is an empty array
* - {@code "{...}"} if {@code obj} is a {@link Map} or a non-empty array
* - {@code "[...]"} if {@code obj} is a {@link Collection}