@@ -16436,8 +16436,8 @@ public final <R> Flowable<R> switchMapSingleDelayError(@NonNull Function<? super
16436
16436
}
16437
16437
16438
16438
/**
16439
- * Returns a {@code Flowable} that emits only the first {@code count} items emitted by the current {@code Flowable}. If the source emits fewer than
16440
- * {@code count} items then all of its items are emitted.
16439
+ * Returns a {@code Flowable} that emits only the first {@code count} items emitted by the current {@code Flowable}.
16440
+ * If the source emits fewer than {@code count} items then all of its items are emitted.
16441
16441
* <p>
16442
16442
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/take.v3.png" alt="">
16443
16443
* <p>
@@ -16450,15 +16450,15 @@ public final <R> Flowable<R> switchMapSingleDelayError(@NonNull Function<? super
16450
16450
* possibly prevent the creation of excess items by the upstream.
16451
16451
* <p>
16452
16452
* The operator requests at most the given {@code count} of items from upstream even
16453
- * if the downstream requests more than that. For example, given a {@code limit (5)},
16453
+ * if the downstream requests more than that. For example, given a {@code take (5)},
16454
16454
* if the downstream requests 1, a request of 1 is submitted to the upstream
16455
16455
* and the operator remembers that only 4 items can be requested now on. A request
16456
16456
* of 5 at this point will request 4 from the upstream and any subsequent requests will
16457
16457
* be ignored.
16458
16458
* <p>
16459
- * Note that requests are negotiated on an operator boundary and {@code limit }'s amount
16459
+ * Note that requests are negotiated on an operator boundary and {@code take }'s amount
16460
16460
* may not be preserved further upstream. For example,
16461
- * {@code source.observeOn(Schedulers.computation()).limit (5)} will still request the
16461
+ * {@code source.observeOn(Schedulers.computation()).take (5)} will still request the
16462
16462
* default (128) elements from the given {@code source}.
16463
16463
* <dl>
16464
16464
* <dt><b>Backpressure:</b></dt>
0 commit comments