From 717a8e4f8b279e1f3f9b3c66621bcef159d4790a Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Tue, 25 May 2021 12:51:38 +0200 Subject: [PATCH] polish docs Resolves #2150 --- docs/src/main/asciidoc/spring-cloud-stream.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-stream.adoc b/docs/src/main/asciidoc/spring-cloud-stream.adoc index 691adbc60..b1e345236 100644 --- a/docs/src/main/asciidoc/spring-cloud-stream.adoc +++ b/docs/src/main/asciidoc/spring-cloud-stream.adoc @@ -1740,13 +1740,13 @@ Here is an example of providing a `BinderCustomizer` bean. public BinderCustomizer binderCustomizer() { return (binder, binderName) -> { if (binder instanceof KafkaMessageChannelBinder) { - ((KafkaMessageChannelBinder) binder).setRebalanceListener(/*...*/); + ((KafkaMessageChannelBinder) binder).setRebalanceListener(...); } else if (binder instanceof KStreamBinder) { - // ... + ... } else if (binder instanceof RabbitMessageChannelBinder) { - // ... + ... } }; }