Skip to content

Commit

Permalink
Fix typo in Javadoc of UniCombine.any()
Browse files Browse the repository at this point in the history
Remove the duplicated "a failure" in "... fires an item or a failure a failure, ...".
  • Loading branch information
acanda committed Nov 23, 2022
1 parent 05aa570 commit 3628618
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ private UniCombine() {
* of these competing unis. If the passed iterable is empty, the resulting {@link Uni} gets a {@code null} item
* just after subscription.
* <p>
* This method subscribes to the set of {@link Uni}. When one of the {@link Uni} fires an item or a failure
* a failure, the event is propagated downstream. Also the other subscriptions are cancelled.
* This method subscribes to the set of {@link Uni}. When one of the {@link Uni} fires an item or a failure,
* the event is propagated downstream. Also the other subscriptions are cancelled.
* <p>
* Note that the callback from the subscriber are called on the thread used to fire the event of the selected
* {@link Uni}. Use {@link Uni#emitOn(Executor)} to change that thread.
Expand Down

0 comments on commit 3628618

Please sign in to comment.