Skip to content

Commit

Permalink
fix typo in javadoc of Maybe::toSingle (#4815)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbcs authored and akarnokd committed Nov 6, 2016
1 parent 40e9464 commit 6df4ea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/Maybe.java
Original file line number Diff line number Diff line change
Expand Up @@ -2919,7 +2919,7 @@ public final Observable<T> toObservable() {

/**
* Converts this Maybe into a Single instance composing cancellation
* through and turing an empty Maybe into a signal of NoSuchElementException.
* through and turning an empty Maybe into a signal of NoSuchElementException.
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code toSingle} does not operate by default on a particular {@link Scheduler}.</dd>
Expand All @@ -2935,7 +2935,7 @@ public final Single<T> toSingle(T defaultValue) {

/**
* Converts this Maybe into a Single instance composing cancellation
* through and turing an empty Maybe into a signal of NoSuchElementException.
* through and turning an empty Maybe into a signal of NoSuchElementException.
* <dl>
* <dt><b>Scheduler:</b></dt>
* <dd>{@code toSingle} does not operate by default on a particular {@link Scheduler}.</dd>
Expand Down

0 comments on commit 6df4ea3

Please sign in to comment.