docs: fix typo in text

removed unnecessary symbol in aws adapter documentation
This commit is contained in:
Aleksei Bulgak
2019-11-22 11:22:10 +03:00
committed by GitHub
parent e2952877c0
commit 7e6b54d845

View File

@@ -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<GenericApplicationContext>` 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: