@@ -4714,7 +4714,7 @@ public static <T, R> Observable<R> zipIterable(Iterable<? extends ObservableSour
47144714 // ***************************************************************************************************
47154715
47164716 /**
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
47184718 * ObservableSource satisfy a condition.
47194719 * <p>
47204720 * <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) {
47624762 }
47634763
47644764 /**
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
47664766 * specified condition, otherwise {@code false}. <em>Note:</em> this always emits {@code false} if the
47674767 * source ObservableSource is empty.
47684768 * <p>
@@ -6319,7 +6319,7 @@ public final Observable<T> concatWith(ObservableSource<? extends T> other) {
63196319 }
63206320
63216321 /**
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
63236323 * specified item.
63246324 * <p>
63256325 * <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() {
83648364 }
83658365
83668366 /**
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}.
83688368 * <p>
83698369 * In Rx.Net this is negated as the {@code any} Observer but we renamed this in RxJava to better match Java
83708370 * naming idioms.
0 commit comments