Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix MulticastProcessor javadoc comment #6042

Merged
merged 1 commit into from
Jun 14, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/processors/MulticastProcessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* the given prefetch amount and no reference counting behavior.</li>
* <li>{@link #create(boolean)}: create an empty {@code MulticastProcessor} with
* {@link io.reactivex.Flowable#bufferSize() Flowable.bufferSize()} prefetch amount
* and no reference counting behavior.</li>
* and an optional reference counting behavior.</li>
* <li>{@link #create(int, boolean)}: create an empty {@code MulticastProcessor} with
* the given prefetch amount and an optional reference counting behavior.</li>
* </ul>
Expand Down Expand Up @@ -174,7 +174,7 @@ public static <T> MulticastProcessor<T> create() {

/**
* Constructs a fresh instance with the default Flowable.bufferSize() prefetch
* amount and no refCount-behavior.
* amount and the optional refCount-behavior.
* @param <T> the input and output value type
* @param refCount if true and if all Subscribers have canceled, the upstream
* is cancelled
Expand Down