Skip to content

Commit c0ee1ff

Browse files
committed
Javadoc syntax fixes
1 parent f944815 commit c0ee1ff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-context/src/main/java/org/springframework/context/annotation/Profile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
* {@code @Profile} can therefore not be used to select an overloaded method with a
7272
* particular argument signature over another; resolution between all factory methods
7373
* for the same bean follows Spring's constructor resolution algorithm at creation time.
74-
* <b>Use distinct Java method names pointing to the same {@link @Bean#name bean name}
74+
* <b>Use distinct Java method names pointing to the same {@link Bean#name bean name}
7575
* if you'd like to define alternative beans with different profile conditions</b>;
7676
* see {@code ProfileDatabaseConfig} in {@link Configuration @Configuration}'s javadoc.
7777
*

spring-context/src/main/java/org/springframework/validation/beanvalidation/LocalValidatorFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
* instead. If you really need programmatic {@code #forExecutables} access, inject this class as
7676
* a {@link ValidatorFactory} and call {@link #getValidator()} on it, then {@code #forExecutables}
7777
* on the returned native {@link Validator} reference instead of directly on this class.
78-
* Alternatively, call {@code #unwrap(Validator.class) which will also provide the native object.
78+
* Alternatively, call {@code #unwrap(Validator.class)} which will also provide the native object.
7979
*
8080
* <p>This class is also being used by Spring's MVC configuration namespace, in case of the
8181
* {@code javax.validation} API being present but no explicit Validator having been configured.

spring-context/src/main/java/org/springframework/validation/beanvalidation/SpringValidatorAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
* <p>Note that Bean Validation 1.1's {@code #forExecutables} method isn't supported
5252
* on this adapter: We do not expect that method to be called by application code;
5353
* consider {@link MethodValidationInterceptor} instead. If you really need programmatic
54-
* {@code #forExecutables} access, call {@code #unwrap(Validator.class) which will
54+
* {@code #forExecutables} access, call {@code #unwrap(Validator.class)} which will
5555
* provide the native {@link Validator} object with {@code #forExecutables} support.
5656
*
5757
* @author Juergen Hoeller

0 commit comments

Comments
 (0)