From e2467696b0aeb50d6341ce1e5fb18c7caa51985c Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Mon, 2 Dec 2019 14:59:42 +0100 Subject: [PATCH] GH-1854 Fixed typo in the doc Resolves #1854 --- 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 c5fbbeab7..40fa192b5 100644 --- a/docs/src/main/asciidoc/spring-cloud-stream.adoc +++ b/docs/src/main/asciidoc/spring-cloud-stream.adoc @@ -687,8 +687,8 @@ public class SampleApplication { The above example demonstrates function which takes two inputs (first of type `String` and second of type `Integer`) and produces a single output of type `String`. -So, for the above example the two input bindings will be `gather_in_0` and `gather-in-1` and for consistency the -output binding also follows the same convention and is named `gather_out_0`. +So, for the above example the two input bindings will be `gather-in-0` and `gather-in-1` and for consistency the +output binding also follows the same convention and is named `gather-out-0`. Knowing that will allow you to set binding specific properties the same way you did with `@StreamListener`.