You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ma...@apache.org on 2019/12/14 11:57:50 UTC

[kafka] 04/04: MINOR: Add missing parentheses in docs/streams/tutorial.html (#7696)

This is an automated email from the ASF dual-hosted git repository.

manikumar pushed a commit to branch 2.4
in repository https://gitbox.apache.org/repos/asf/kafka.git

commit 82d06d4553ad2f6f8447e3432ca2dc42efead930
Author: Xin Wang <wa...@gmail.com>
AuthorDate: Tue Nov 19 00:41:40 2019 +0800

    MINOR: Add missing parentheses in docs/streams/tutorial.html (#7696)
    
    Reviewers: Jason Gustafson <ja...@confluent.io>
---
 docs/streams/tutorial.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/streams/tutorial.html b/docs/streams/tutorial.html
index 4b333bd..eeb90d6 100644
--- a/docs/streams/tutorial.html
+++ b/docs/streams/tutorial.html
@@ -608,7 +608,7 @@
                       .groupBy((key, value) -> value)
                       .count(Materialized.&lt;String, Long, KeyValueStore&lt;Bytes, byte[]&gt;&gt;as("counts-store"))
                       .toStream()
-                      .to("streams-wordcount-output", Produced.with(Serdes.String(), Serdes.Long());
+                      .to("streams-wordcount-output", Produced.with(Serdes.String(), Serdes.Long()));
 
                 final Topology topology = builder.build();
                 final KafkaStreams streams = new KafkaStreams(topology, props);