Skip to content

Commit

Permalink
Merge pull request #36016 from dicaeffe/patch-1
Browse files Browse the repository at this point in the history
Correction of typo into mutiny-primer.adoc
  • Loading branch information
cescoffier authored Sep 20, 2023
2 parents e378ae2 + 3db6a67 commit 87117ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/mutiny-primer.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ Unlike `transform`, the function passed to `transformToUni` returns a Uni.
----
Uni<String> uni1 = …
uni1
.onItem().transformtoUni(item -> anotherAsynchronousAction(item));
.onItem().transformToUni(item -> anotherAsynchronousAction(item));
----

More details about asynchronous transformation can be found in the https://smallrye.io/smallrye-mutiny/latest/tutorials/transforming-items-asynchronously/[Mutiny documentation].
Expand Down

0 comments on commit 87117ac

Please sign in to comment.