Skip to content

Commit 8335d29

Browse files
committed
Add missing type argument documentation
1 parent ab21265 commit 8335d29

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/main/java/io/reactivex/Maybe.java

+1
Original file line numberDiff line numberDiff line change
@@ -2563,6 +2563,7 @@ public final <R> Flowable<R> flatMapPublisher(Function<? super T, ? extends Publ
25632563
* <dd>{@code flatMapSingle} does not operate by default on a particular {@link Scheduler}.</dd>
25642564
* </dl>
25652565
*
2566+
* @param <R> the result value type
25662567
* @param mapper
25672568
* a function that, when applied to the item emitted by the source Maybe, returns a
25682569
* Single

src/main/java/io/reactivex/internal/operators/maybe/MaybeFlatMapSingle.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
/**
3030
* Maps the success value of the source MaybeSource into a Single.
31-
* @param <T>
31+
* @param <T> the input value type
32+
* @param <R> the result value type
3233
*/
3334
public final class MaybeFlatMapSingle<T, R> extends Single<R> {
3435

0 commit comments

Comments
 (0)