diff --git a/src/main/java/org/springframework/data/aot/AotContext.java b/src/main/java/org/springframework/data/aot/AotContext.java index 545fb749b..96d62e311 100644 --- a/src/main/java/org/springframework/data/aot/AotContext.java +++ b/src/main/java/org/springframework/data/aot/AotContext.java @@ -166,7 +166,7 @@ public interface AotContext { interface TypeIntrospector { /** - * Determines whether @link Class type} is present on the application classpath. + * Determines whether {@link Class type} is present on the application classpath. * * @return {@literal true} if the {@link Class type} is present on the application classpath. * @see #getClassLoader() diff --git a/src/main/java/org/springframework/data/auditing/Auditor.java b/src/main/java/org/springframework/data/auditing/Auditor.java index 07d934dae..46008cee8 100644 --- a/src/main/java/org/springframework/data/auditing/Auditor.java +++ b/src/main/java/org/springframework/data/auditing/Auditor.java @@ -57,7 +57,7 @@ class Auditor { * * @param source can be {@literal null}. * @param - * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. } + * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. */ public static Auditor of(@Nullable T source) { @@ -75,7 +75,7 @@ class Auditor { * * @param source must not be {@literal null}. * @param - * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. } + * @return {@link Auditor#none()} if the given {@literal source} is {@literal null}. */ public static Auditor ofOptional(@Nullable Optional source) { return Auditor.of(source.orElse(null));