From 66421e1a54d0cb68d1111988f1a213f2454cc2f7 Mon Sep 17 00:00:00 2001
From: Inna Shpota <25878403+shpotainna@users.noreply.github.com>
Date: Wed, 23 Dec 2020 17:20:11 +0200
Subject: [PATCH] Fix typo in documentation
---
.../src/main/java/io/smallrye/mutiny/Uni.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/implementation/src/main/java/io/smallrye/mutiny/Uni.java b/implementation/src/main/java/io/smallrye/mutiny/Uni.java
index 143237467..8f00818be 100644
--- a/implementation/src/main/java/io/smallrye/mutiny/Uni.java
+++ b/implementation/src/main/java/io/smallrye/mutiny/Uni.java
@@ -81,7 +81,7 @@ static UniCreate createFrom() {
*
* With `then` you can structure and chain groups of processing.
*
- * @param stage the function receiving the this {@link Uni} as parameter and producing the outcome (can be a
+ * @param stage the function receiving this {@link Uni} as parameter and producing the outcome (can be a
* {@link Uni} or something else), must not be {@code null}.
* @param the outcome type
* @return the outcome of the function.
@@ -106,7 +106,7 @@ default O then(Function, O> stage) {
*
* With `stage` you can structure and chain groups of processing.
*
- * @param stage the function receiving the this {@link Uni} as parameter and producing the outcome (can be a
+ * @param stage the function receiving this {@link Uni} as parameter and producing the outcome (can be a
* {@link Uni} or something else), must not be {@code null}.
* @param the outcome type
* @return the outcome of the function.
@@ -517,7 +517,7 @@ default Uni invokeUni(Function super T, Uni>> action) {
* This operation is generally named {@code flatMap}.
* This method is a shortcut on {@link UniOnItem#transformToUni(Function)} onItem().transformToUni(mapper)}.
*
- * @param mapper the function called with the item of the this {@link Uni} and producing the {@link Uni},
+ * @param mapper the function called with the item of this {@link Uni} and producing the {@link Uni},
* must not be {@code null}, must not return {@code null}.
* @param the type of item
* @return a new {@link Uni} that would fire events from the uni produced by the mapper function, possibly
@@ -548,7 +548,7 @@ default Uni flatMap(Function super T, Uni extends O>> mapper) {
* This operation is generally named {@code flatMap}.
* This method is a shortcut for {@link UniOnItem#transformToUni(Function) onItem().transformToUni(mapper)}.
*
- * @param mapper the function called with the item of the this {@link Uni} and producing the {@link Uni},
+ * @param mapper the function called with the item of this {@link Uni} and producing the {@link Uni},
* must not be {@code null}, must not return {@code null}.
* @param the type of item
* @return a new {@link Uni} that would fire events from the uni produced by the mapper function, possibly
@@ -614,7 +614,7 @@ default Uni chain(Supplier> supplier) {
* This method is a shortcut for {@link UniOnItem#transformToUni(Function)
* onItem().transformToUni(ignored -> supplier.get())}.
*
- * @param supplier the function called when the item of the this {@link Uni} is emitted and producing the {@link Uni},
+ * @param supplier the function called when the item of this {@link Uni} is emitted and producing the {@link Uni},
* must not be {@code null}, must not return {@code null}.
* @param the type of item
* @return a new {@link Uni} that would fire events from the uni produced by the mapper function, possibly