Skip to content

Commit

Permalink
Updating JavaDoc with correct return types (#5600)
Browse files Browse the repository at this point in the history
  • Loading branch information
levaja authored and akarnokd committed Sep 14, 2017
1 parent 99a620a commit 8c60d9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/io/reactivex/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -4714,7 +4714,7 @@ public static <T, R> Observable<R> zipIterable(Iterable<? extends ObservableSour
// ***************************************************************************************************

/**
* Returns an Observable that emits a Boolean that indicates whether all of the items emitted by the source
* Returns a Single that emits a Boolean that indicates whether all of the items emitted by the source
* ObservableSource satisfy a condition.
* <p>
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/all.2.png" alt="">
Expand Down Expand Up @@ -4762,7 +4762,7 @@ public final Observable<T> ambWith(ObservableSource<? extends T> other) {
}

/**
* Returns an Observable that emits {@code true} if any item emitted by the source ObservableSource satisfies a
* Returns a Single that emits {@code true} if any item emitted by the source ObservableSource satisfies a
* specified condition, otherwise {@code false}. <em>Note:</em> this always emits {@code false} if the
* source ObservableSource is empty.
* <p>
Expand Down Expand Up @@ -6319,7 +6319,7 @@ public final Observable<T> concatWith(ObservableSource<? extends T> other) {
}

/**
* Returns an Observable that emits a Boolean that indicates whether the source ObservableSource emitted a
* Returns a Single that emits a Boolean that indicates whether the source ObservableSource emitted a
* specified item.
* <p>
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/contains.2.png" alt="">
Expand Down Expand Up @@ -8364,7 +8364,7 @@ public final Completable ignoreElements() {
}

/**
* Returns an Observable that emits {@code true} if the source ObservableSource is empty, otherwise {@code false}.
* Returns a Single that emits {@code true} if the source ObservableSource is empty, otherwise {@code false}.
* <p>
* In Rx.Net this is negated as the {@code any} Observer but we renamed this in RxJava to better match Java
* naming idioms.
Expand Down

0 comments on commit 8c60d9d

Please sign in to comment.