@@ -6516,9 +6516,10 @@ public final <B, U extends Collection<? super T>> Flowable<U> buffer(Publisher<B
65166516 * new buffer whenever the Publisher produced by the specified {@code boundaryIndicatorSupplier} emits an item.
65176517 * <p>
65186518 * <img width="640" height="395" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/buffer1.png" alt="">
6519- * <dl >
6520- * If either the source Publisher or the boundary Publisher issues an onError notification the event is passed on
6519+ * <p >
6520+ * If either the source {@code Publisher} or the boundary {@code Publisher} issues an {@code onError} notification the event is passed on
65216521 * immediately without first emitting the buffer it is in the process of assembling.
6522+ * <dl>
65226523 * <dt><b>Backpressure:</b></dt>
65236524 * <dd>This operator does not support backpressure as it is instead controlled by the given Publishers and
65246525 * buffers data. It requests {@code Long.MAX_VALUE} upstream and does not obey downstream requests.</dd>
@@ -6540,7 +6541,6 @@ public final <B, U extends Collection<? super T>> Flowable<U> buffer(Publisher<B
65406541 @SchedulerSupport(SchedulerSupport.NONE)
65416542 public final <B> Flowable<List<T>> buffer(Callable<? extends Publisher<B>> boundaryIndicatorSupplier) {
65426543 return buffer(boundaryIndicatorSupplier, ArrayListSupplier.<T>asCallable());
6543-
65446544 }
65456545
65466546 /**
@@ -6549,9 +6549,10 @@ public final <B> Flowable<List<T>> buffer(Callable<? extends Publisher<B>> bound
65496549 * new buffer whenever the Publisher produced by the specified {@code boundaryIndicatorSupplier} emits an item.
65506550 * <p>
65516551 * <img width="640" height="395" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/buffer1.png" alt="">
6552- * <dl >
6553- * If either the source Publisher or the boundary Publisher issues an onError notification the event is passed on
6552+ * <p >
6553+ * If either the source {@code Publisher} or the boundary {@code Publisher} issues an {@code onError} notification the event is passed on
65546554 * immediately without first emitting the buffer it is in the process of assembling.
6555+ * <dl>
65556556 * <dt><b>Backpressure:</b></dt>
65566557 * <dd>This operator does not support backpressure as it is instead controlled by the given Publishers and
65576558 * buffers data. It requests {@code Long.MAX_VALUE} upstream and does not obey downstream requests.</dd>
0 commit comments