@@ -354,9 +354,8 @@ trait Observable[+T]
354
354
* Creates an Observable which produces buffers of collected values.
355
355
*
356
356
* This Observable produces buffers. Buffers are created when the specified `openings`
357
- * Observable produces an object. Additionally the function argument
358
- * is used to create an Observable which produces [[rx.lang.scala.util.Closing ]] objects. When this
359
- * Observable produces such an object, the associated buffer is emitted.
357
+ * Observable produces an object. That object is used to construct an Observable to emit buffers, feeding it into `closings` function.
358
+ * Buffers are emitted when the created Observable produces an object.
360
359
*
361
360
* @param openings
362
361
* The [[rx.lang.scala.Observable ]] which, when it produces an object, will cause
@@ -566,10 +565,9 @@ trait Observable[+T]
566
565
}
567
566
568
567
/**
569
- * Creates an Observable which produces windows of collected values. This Observable produces windows.
570
- * Chunks are created when the specified `openings` Observable produces an object.
571
- * Additionally the `closings` argument is used to create an Observable which produces [[rx.lang.scala.util.Closing ]] objects.
572
- * When this Observable produces such an object, the associated window is emitted.
568
+ * Creates an Observable which produces windows of collected values. Chunks are created when the specified `openings`
569
+ * Observable produces an object. That object is used to construct an Observable to emit windows, feeding it into `closings` function.
570
+ * Windows are emitted when the created Observable produces an object.
573
571
*
574
572
* @param openings
575
573
* The [[rx.lang.scala.Observable ]] which when it produces an object, will cause
0 commit comments