Skip to content

Commit

Permalink
Update creating-uni-pipelines.md
Browse files Browse the repository at this point in the history
Added missing verb and rephrase sentence that didn't make sense
  • Loading branch information
RapTho authored Oct 28, 2024
1 parent fd436dc commit a1a4359
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/docs/tutorials/creating-uni-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ You can create failed `Uni` instances with:

## Creating `Uni<Void>`

When the represented operation to not produce a result, you still need a way to indicate the operation's completion.
When the represented operation should not produce a result, you still need a way to indicate the operation's completion.
For this, you need to emit a `null` item:

```java linenums="1"
Expand All @@ -106,7 +106,7 @@ It can also get notified of cancellation to, for example, stop the work in progr

## Creating Unis from a CompletionStage (_advanced_)

You can also `Uni` objects from `CompletionStage` / `CompletableFuture`.
You can also create `Uni` objects from `CompletionStage` / `CompletableFuture`.
This is useful when integrating with APIs that are based on these types:

```java linenums="1"
Expand Down

0 comments on commit a1a4359

Please sign in to comment.