From 7e6b54d845bce1fdd4ed23ab93df9516a22dc71a Mon Sep 17 00:00:00 2001 From: Aleksei Bulgak <1677410+aleksei-bulgak@users.noreply.github.com> Date: Fri, 22 Nov 2019 11:22:10 +0300 Subject: [PATCH] docs: fix typo in text removed unnecessary symbol in aws adapter documentation --- docs/src/main/asciidoc/adapters/aws.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/adapters/aws.adoc b/docs/src/main/asciidoc/adapters/aws.adoc index 87313101e..555d3a94a 100644 --- a/docs/src/main/asciidoc/adapters/aws.adoc +++ b/docs/src/main/asciidoc/adapters/aws.adoc @@ -11,7 +11,7 @@ include::adapters/aws-intro.adoc[] Your functions will start much quicker if you can use functional bean definitions instead of `@Bean`. To do this make your main class an `ApplicationContextInitializer` and use the `registerBean()` methods in `GenericApplicationContext` to -create all the beans you need. You function need sto be registered as a bean of type `FunctionRegistration` so that the input and +create all the beans you need. You function need to be registered as a bean of type `FunctionRegistration` so that the input and output types can be accessed by the framework. There is an example in github (the AWS sample is written in this style). It would look something like this: