@@ -7855,19 +7855,18 @@ public final Observable<T> takeWhile(final Func1<? super T, Boolean> predicate)
7855
7855
}
7856
7856
7857
7857
/**
7858
- * Returns an Observable that first emits items emitted by the source Observable,
7859
- * checks the specified condition after each item, and
7860
- * then completes if the condition is satisfied.
7858
+ * Returns an Observable that emits items emitted by the source Observable, checks the specified predicate
7859
+ * for each item, and then completes if the condition is satisfied.
7861
7860
* <p>
7862
- * The difference between this operator and {@link #takeWhile(Func1)} is that here, the condition is evaluated <b>after</b>
7863
- * the item was emitted.
7861
+ * The difference between this operator and {@link #takeWhile(Func1)} is that here, the condition is
7862
+ * evaluated <em>after</em> the item is emitted.
7864
7863
*
7865
7864
* @param stopPredicate
7866
7865
* a function that evaluates an item emitted by the source Observable and returns a Boolean
7867
- * @return an Observable that first emits items emitted by the source Observable,
7868
- * checks the specified condition after each item, and
7869
- * then completes if the condition is satisfied.
7866
+ * @return an Observable that first emits items emitted by the source Observable, checks the specified
7867
+ * condition after each item, and then completes if the condition is satisfied.
7870
7868
* @see Observable#takeWhile(Func1)
7869
+ * @since (if this graduates from Experimental/Beta to supported, replace this parenthetical with the release number)
7871
7870
*/
7872
7871
@ Experimental
7873
7872
public final Observable <T > takeUntil (final Func1 <? super T , Boolean > stopPredicate ) {
0 commit comments