You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2018/05/04 16:54:05 UTC

[kafka-site] branch asf-site updated: [KAFKA-6861] Missing ')' in Kafka Streams documentation (#139)

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

guozhang pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/kafka-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new bd6878a  [KAFKA-6861] Missing ')' in Kafka Streams documentation (#139)
bd6878a is described below

commit bd6878a7bc3b9599729d3ccaba6ae9fd9c952e28
Author: zer0Id0l <to...@gmail.com>
AuthorDate: Fri May 4 09:54:01 2018 -0700

    [KAFKA-6861] Missing ')' in Kafka Streams documentation (#139)
    
    Adding missing parentheses in the code snippet for Streams Word Count tutorial
---
 10/tutorial.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/10/tutorial.html b/10/tutorial.html
index 7d75ed6..e7b5ea4 100644
--- a/10/tutorial.html
+++ b/10/tutorial.html
@@ -530,7 +530,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()));
     </pre>
 
     <p>

-- 
To stop receiving notification emails like this one, please contact
guozhang@apache.org.