diff --git a/src/main/java/io/reactivex/processors/MulticastProcessor.java b/src/main/java/io/reactivex/processors/MulticastProcessor.java index f72b145041..71d8a2dd8e 100644 --- a/src/main/java/io/reactivex/processors/MulticastProcessor.java +++ b/src/main/java/io/reactivex/processors/MulticastProcessor.java @@ -43,7 +43,7 @@ * the given prefetch amount and no reference counting behavior. *
  • {@link #create(boolean)}: create an empty {@code MulticastProcessor} with * {@link io.reactivex.Flowable#bufferSize() Flowable.bufferSize()} prefetch amount - * and no reference counting behavior.
  • + * and an optional reference counting behavior. *
  • {@link #create(int, boolean)}: create an empty {@code MulticastProcessor} with * the given prefetch amount and an optional reference counting behavior.
  • * @@ -174,7 +174,7 @@ public static MulticastProcessor create() { /** * Constructs a fresh instance with the default Flowable.bufferSize() prefetch - * amount and no refCount-behavior. + * amount and the optional refCount-behavior. * @param the input and output value type * @param refCount if true and if all Subscribers have canceled, the upstream * is cancelled