Skip to content

Commit 87a89c2

Browse files
committed
Javadoc revision
1 parent c97bfd7 commit 87a89c2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*
3939
* <p>By default there are adapters for {@link CompletableFuture}, RxJava 1, and
4040
* also for a any Reactive Streams {@link Publisher}. Additional adapters can be
41-
* registered via {@link #registerFluxAdapter) and {@link #registerMonoAdapter}.
41+
* registered via {@link #registerFluxAdapter} and {@link #registerMonoAdapter}.
4242
*
4343
* @author Rossen Stoyanchev
4444
* @since 5.0
@@ -76,9 +76,9 @@ public ReactiveAdapterRegistry() {
7676

7777

7878
/**
79-
* Register an adapter for adapting to and from a {@link Mono}. The provided
80-
* functions can assume that input will never be {@code null} and also that
81-
* any {@link Optional} wrapper is unwrapped.
79+
* Register an adapter for adapting to and from a {@link Mono}.
80+
* <p>The provided functions can assume that input will never be {@code null}
81+
* and also that any {@link Optional} wrapper is unwrapped.
8282
*/
8383
public void registerMonoAdapter(Class<?> adapteeType, Function<Object, Mono<?>> toAdapter,
8484
Function<Mono<?>, Object> fromAdapter, ReactiveAdapter.Descriptor descriptor) {
@@ -87,9 +87,9 @@ public void registerMonoAdapter(Class<?> adapteeType, Function<Object, Mono<?>>
8787
}
8888

8989
/**
90-
* Register an adapter for adapting to and from a {@link Flux}. The provided
91-
* functions can assume that input will never be {@code null} and also that
92-
* any {@link Optional} wrapper is unwrapped.
90+
* Register an adapter for adapting to and from a {@link Flux}.
91+
* <p>The provided functions can assume that input will never be {@code null}
92+
* and also that any {@link Optional} wrapper is unwrapped.
9393
*/
9494
public void registerFluxAdapter(Class<?> adapteeType, Function<Object, Flux<?>> toAdapter,
9595
Function<Flux<?>, Object> fromAdapter) {

0 commit comments

Comments
 (0)