Fix broken links in JavaDoc

Issue: SPR-17174
This commit is contained in:
Sam Brannen
2018-08-13 12:22:52 +02:00
parent 13c090b41d
commit 8126ffbc8c
7 changed files with 21 additions and 16 deletions

View File

@@ -45,7 +45,7 @@ public interface WebFluxConfigurer {
/**
* Configure how the content type requested for the response is resolved
* when handling reqests with annotated controllers.
* when handling requests with annotated controllers.
* @param builder for configuring the resolvers to use
*/
default void configureContentTypeResolver(RequestedContentTypeResolverBuilder builder) {
@@ -96,8 +96,8 @@ public interface WebFluxConfigurer {
}
/**
* Add custom {@link Converter}s and {@link Formatter Converter}s and {@link Formatters} for performing type
* conversion and formatting of annotated controller method arguments.
* Add custom {@link Converter Converters} and {@link Formatter Formatters} for
* performing type conversion and formatting of annotated controller method arguments.
*/
default void addFormatters(FormatterRegistry registry) {
}
@@ -105,7 +105,7 @@ public interface WebFluxConfigurer {
/**
* Provide a custom {@link Validator}.
* <p>By default a validator for standard bean validation is created if
* bean validation api is present on the classpath.
* bean validation API is present on the classpath.
* <p>The configured validator is used for validating annotated controller
* method arguments.
*/