From 95080cabfd635121e3270a358c2f20ad5968a4f4 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Sat, 28 Feb 2026 16:01:01 +0100 Subject: [PATCH] Polishing --- .../springframework/aot/hint/RuntimeHints.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/aot/hint/RuntimeHints.java b/spring-core/src/main/java/org/springframework/aot/hint/RuntimeHints.java index 01f2ba37672..be2391317c7 100644 --- a/spring-core/src/main/java/org/springframework/aot/hint/RuntimeHints.java +++ b/spring-core/src/main/java/org/springframework/aot/hint/RuntimeHints.java @@ -17,15 +17,15 @@ package org.springframework.aot.hint; /** - * Gather hints that can be used to optimize the application runtime. + * Hints that can be used to optimize the application runtime. * - *

Use of reflection can be recorded for individual members of a type, - * lambdas,as well as broader {@linkplain MemberCategory member categories}. - * Access to resources can be specified using patterns or the base name of a + *

The use of reflection can be recorded for individual members of a type, + * lambdas, or broader {@linkplain MemberCategory member categories}. + * + *

Access to resources can be specified using patterns or the base name of a * resource bundle. * - *

Hints that require the need for Java serialization of proxies can be - * recorded as well. + *

The need for Java serialization or proxies can be recorded as well. * * @author Stephane Nicoll * @author Janne Valkealahti @@ -81,8 +81,8 @@ public class RuntimeHints { } /** - * Provide access to jni-based hints. - * @return jni hints + * Provide access to JNI-based hints. + * @return JNI hints */ public ReflectionHints jni() { return this.jni;