Skip to content

Commit

Permalink
Fix Completable.toMaybe() @return javadoc. (#5936)
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-zinnatullin authored and akarnokd committed Mar 27, 2018
1 parent 5c58f82 commit 995a6f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/io/reactivex/Completable.java
Original file line number Diff line number Diff line change
Expand Up @@ -2182,7 +2182,8 @@ public final <T> Flowable<T> toFlowable() {
* </dl>
*
* @param <T> the value type
* @return a {@link Maybe} that emits a single item T or an error.
* @return a {@link Maybe} that only calls {@code onComplete} or {@code onError}, based on which one is
* called by the source Completable.
*/
@CheckReturnValue
@SuppressWarnings("unchecked")
Expand Down

0 comments on commit 995a6f5

Please sign in to comment.