Skip to content

Commit

Permalink
MINOR: Add missing parentheses in docs/streams/tutorial.html (apache#…
Browse files Browse the repository at this point in the history
…7696)

Reviewers: Jason Gustafson <[email protected]>
  • Loading branch information
wangxinalex authored and hachikuji committed Nov 18, 2019
1 parent 374e480 commit 0ee9bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/streams/tutorial.html
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ <h4><a id="tutorial_code_wordcount" href="#tutorial_code_wordcount">Writing a th
.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);
Expand Down

0 comments on commit 0ee9bf3

Please sign in to comment.