From 175a156a150ecfb615f493b100892860d931dcc6 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sat, 24 Oct 2020 14:48:53 +0100 Subject: [PATCH] Polish docs --- docs/src/reference/asciidoc/sm-actions-reactive.adoc | 2 +- docs/src/reference/asciidoc/sm-guards-reactive.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/reference/asciidoc/sm-actions-reactive.adoc b/docs/src/reference/asciidoc/sm-actions-reactive.adoc index 6d404c0c..5a8c9dbe 100644 --- a/docs/src/reference/asciidoc/sm-actions-reactive.adoc +++ b/docs/src/reference/asciidoc/sm-actions-reactive.adoc @@ -18,7 +18,7 @@ To overcome this issue we've internally changed `Action` handling to process a plain java's `Function` taking `StateContext` and returning `Mono`. This way we can call action and fully in a reactive way to execute action only when it's subscribed and in a non-blocking way -to wait it's completion. +to wait completion. ==== [source,java,indent=0] diff --git a/docs/src/reference/asciidoc/sm-guards-reactive.adoc b/docs/src/reference/asciidoc/sm-guards-reactive.adoc index e43ab388..8de4fbc0 100644 --- a/docs/src/reference/asciidoc/sm-guards-reactive.adoc +++ b/docs/src/reference/asciidoc/sm-guards-reactive.adoc @@ -18,7 +18,7 @@ To overcome this issue we've internally changed `Guard` handling to process a plain java's `Function` taking `StateContext` and returning `Mono`. This way we can call guard and fully in a reactive way to evaluate it only when it's subscribed and in a non-blocking way -to wait it's completion with a return value. +to wait completion with a return value. ==== [source,java,indent=0]