From 1325d425ff85918899fa2b5b1da44fb0a25d62d5 Mon Sep 17 00:00:00 2001 From: Guilherme Torres Castro <1149991+guitcastro@users.noreply.github.com> Date: Fri, 29 May 2020 12:22:30 -0300 Subject: [PATCH] Fix wrong function name in the scatter example --- docs/src/main/asciidoc/spring-cloud-stream.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-stream.adoc b/docs/src/main/asciidoc/spring-cloud-stream.adoc index 4f0259446..b4eb511e4 100644 --- a/docs/src/main/asciidoc/spring-cloud-stream.adoc +++ b/docs/src/main/asciidoc/spring-cloud-stream.adoc @@ -912,8 +912,8 @@ public class SampleApplication { The above example is somewhat of a the opposite from the previous sample and demonstrates function which takes single input of type `Integer` and produces two outputs (both of type `String`). -So, for the above example the input binding is `gather-in-0` and the -output bindings are `gather-out-0` and `gather-out-1`. +So, for the above example the input binding is `scatter-in-0` and the +output bindings are `scatter-out-0` and `scatter-out-1`. And you test it with the following code: [source,java]