From 7607d781c7fb05e235fafabc3994e6f04da62c27 Mon Sep 17 00:00:00 2001 From: Eric Bottard Date: Fri, 8 Jul 2016 16:42:48 +0200 Subject: [PATCH] Fix doc typo --- .../src/main/asciidoc/spring-cloud-stream-overview.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc b/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc index 9514bea15..1407b2d90 100644 --- a/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc +++ b/spring-cloud-stream-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc @@ -1333,7 +1333,7 @@ This is because the payload at the module's output channel is already a String s While conversion is supported for both input and output channels, it is especially recommended to be used for the conversion of outbound messages. For the conversion of inbound messages, especially when the target is a POJO, the `@StreamListener` support will perform the conversion automatically. -=== ``@StreamListener` and Message Conversion +=== `@StreamListener` and Message Conversion The `@StreamListener` annotation provides a convenient way for converting incoming messages without the need to specify the content type of an input channel. During the dispatching process to methods annotated with `@StreamListener`, a conversion will be applied automatically if the argument requires it.