From 3628618d367782eee7b1a457e6ecc739101c52cb Mon Sep 17 00:00:00 2001 From: Philip Graf Date: Wed, 23 Nov 2022 19:08:22 +0100 Subject: [PATCH] Fix typo in Javadoc of UniCombine.any() Remove the duplicated "a failure" in "... fires an item or a failure a failure, ...". --- .../src/main/java/io/smallrye/mutiny/groups/UniCombine.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/implementation/src/main/java/io/smallrye/mutiny/groups/UniCombine.java b/implementation/src/main/java/io/smallrye/mutiny/groups/UniCombine.java index ace8c3a94..8183fbc47 100644 --- a/implementation/src/main/java/io/smallrye/mutiny/groups/UniCombine.java +++ b/implementation/src/main/java/io/smallrye/mutiny/groups/UniCombine.java @@ -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. *

- * 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. *

* 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.