@@ -4714,7 +4714,7 @@ public static <T, R> Observable<R> zipIterable(Iterable<? extends ObservableSour
4714
4714
// ***************************************************************************************************
4715
4715
4716
4716
/**
4717
- * Returns an Observable that emits a Boolean that indicates whether all of the items emitted by the source
4717
+ * Returns a Single that emits a Boolean that indicates whether all of the items emitted by the source
4718
4718
* ObservableSource satisfy a condition.
4719
4719
* <p>
4720
4720
* <img width="640" height="315" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/all.2.png" alt="">
@@ -4762,7 +4762,7 @@ public final Observable<T> ambWith(ObservableSource<? extends T> other) {
4762
4762
}
4763
4763
4764
4764
/**
4765
- * Returns an Observable that emits {@code true} if any item emitted by the source ObservableSource satisfies a
4765
+ * Returns a Single that emits {@code true} if any item emitted by the source ObservableSource satisfies a
4766
4766
* specified condition, otherwise {@code false}. <em>Note:</em> this always emits {@code false} if the
4767
4767
* source ObservableSource is empty.
4768
4768
* <p>
@@ -6319,7 +6319,7 @@ public final Observable<T> concatWith(ObservableSource<? extends T> other) {
6319
6319
}
6320
6320
6321
6321
/**
6322
- * Returns an Observable that emits a Boolean that indicates whether the source ObservableSource emitted a
6322
+ * Returns a Single that emits a Boolean that indicates whether the source ObservableSource emitted a
6323
6323
* specified item.
6324
6324
* <p>
6325
6325
* <img width="640" height="320" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/contains.2.png" alt="">
@@ -8364,7 +8364,7 @@ public final Completable ignoreElements() {
8364
8364
}
8365
8365
8366
8366
/**
8367
- * Returns an Observable that emits {@code true} if the source ObservableSource is empty, otherwise {@code false}.
8367
+ * Returns a Single that emits {@code true} if the source ObservableSource is empty, otherwise {@code false}.
8368
8368
* <p>
8369
8369
* In Rx.Net this is negated as the {@code any} Observer but we renamed this in RxJava to better match Java
8370
8370
* naming idioms.
0 commit comments