From 5d312228dbec92c3c9698de68a845947b41736fd Mon Sep 17 00:00:00 2001 From: Marco Leichsenring Date: Wed, 16 Dec 2020 12:03:48 +0100 Subject: [PATCH] Fix topic name confg in docs --- docs/src/main/asciidoc/kafka-streams.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/kafka-streams.adoc b/docs/src/main/asciidoc/kafka-streams.adoc index b7a9324dd..2b0292097 100644 --- a/docs/src/main/asciidoc/kafka-streams.adoc +++ b/docs/src/main/asciidoc/kafka-streams.adoc @@ -403,7 +403,7 @@ Finally, here is the `StreamListener` equivalent of the application with three i @SendTo("output") public KStream process( @Input("input-1") KStream ordersStream, - @Input("input-"2) GlobalKTable customers, + @Input("input-2") GlobalKTable customers, @Input("input-3") GlobalKTable products) { KStream customerOrdersStream = ordersStream.join(