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 <[email protected]>
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.<String, Long, KeyValueStore<Bytes,
byte[]>>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
[email protected].