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/02/13 00:58:04 UTC

[kafka-site] branch asf-site updated: KAFKA-6472 - Fix WordCount example code error (#126)

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 f838ac9  KAFKA-6472 - Fix WordCount example code error (#126)
f838ac9 is described below

commit f838ac9c11ed4819a71f5856ab5b7c6061f7757f
Author: Joel Hamill <11...@users.noreply.github.com>
AuthorDate: Mon Feb 12 16:58:01 2018 -0800

    KAFKA-6472 - Fix WordCount example code error (#126)
---
 10/streams/tutorial.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/10/streams/tutorial.html b/10/streams/tutorial.html
index 0bc7314..11162e8 100644
--- a/10/streams/tutorial.html
+++ b/10/streams/tutorial.html
@@ -516,7 +516,7 @@
     </p>
 
     <pre class="brush: java;">
-        counts.toStream().to("streams-wordcount-output", Produced.with(Serdes.String(), Serdes.Long());
+        counts.toStream().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.