Skip to content

Commit 63d25e9

Browse files
authored
[docs] Remove reference to missing type in Flux javadocs (#3874)
1 parent 246637e commit 63d25e9

File tree

1 file changed

+2
-2
lines changed
  • reactor-core/src/main/java/reactor/core/publisher

1 file changed

+2
-2
lines changed

reactor-core/src/main/java/reactor/core/publisher/Flux.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -2035,7 +2035,7 @@ public static Flux<Integer> range(int start, int count) {
20352035
* @param mergedPublishers The {@link Publisher} of {@link Publisher} to switch on and mirror.
20362036
* @param <T> the produced type
20372037
*
2038-
* @return a {@link SinkManyAbstractBase} accepting publishers and producing T
2038+
* @return a {@link Flux} accepting publishers and producing T
20392039
*/
20402040
public static <T> Flux<T> switchOnNext(Publisher<? extends Publisher<? extends T>> mergedPublishers) {
20412041
return onAssembly(new FluxSwitchMapNoPrefetch<>(from(mergedPublishers),
@@ -2056,7 +2056,7 @@ public static <T> Flux<T> switchOnNext(Publisher<? extends Publisher<? extends T
20562056
* @param prefetch the inner source request size
20572057
* @param <T> the produced type
20582058
*
2059-
* @return a {@link SinkManyAbstractBase} accepting publishers and producing T
2059+
* @return a {@link Flux} accepting publishers and producing T
20602060
*
20612061
* @deprecated to be removed in 3.6.0 at the earliest. In 3.5.0, you should replace
20622062
* calls with prefetch=0 with calls to switchOnNext(mergedPublishers), as the default

0 commit comments

Comments
 (0)