KAFKA-6472 - Fix WordCount example code error (#4538)

Reviewers: Guozhang Wang <wangguoz@gmail.com>, Matthias J. Sax <mjsax@apache.org>
This commit is contained in:
Joel Hamill 2018-02-12 16:54:52 -08:00 committed by Guozhang Wang
parent f324de45b8
commit 65aa1a0c3e
1 changed files with 1 additions and 1 deletions

View File

@ -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>