Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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