Repository: kafka
Updated Branches:
  refs/heads/trunk 9a7032720 -> 51e745ef3


MINOR: Fix typo in WordCountProcessorDemo

`bin-kafka-console-producer.sh` should be `bin/kafka-console-producer.sh`.

Author: Will Marshall <wcm...@gmail.com>

Reviewers: Guozhang Wang <wangg...@gmail.com>

Closes #2410 from wmarshall484/typo-fix


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/51e745ef
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/51e745ef
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/51e745ef

Branch: refs/heads/trunk
Commit: 51e745ef30c777009c2d1f75965e63a3fe7bb474
Parents: 9a70327
Author: Will Marshall <wcm...@gmail.com>
Authored: Wed Jan 25 18:01:37 2017 -0800
Committer: Guozhang Wang <wangg...@gmail.com>
Committed: Wed Jan 25 18:01:37 2017 -0800

----------------------------------------------------------------------
 .../kafka/streams/examples/wordcount/WordCountProcessorDemo.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/51e745ef/streams/examples/src/main/java/org/apache/kafka/streams/examples/wordcount/WordCountProcessorDemo.java
----------------------------------------------------------------------
diff --git 
a/streams/examples/src/main/java/org/apache/kafka/streams/examples/wordcount/WordCountProcessorDemo.java
 
b/streams/examples/src/main/java/org/apache/kafka/streams/examples/wordcount/WordCountProcessorDemo.java
index e0560a9..f9913ca 100644
--- 
a/streams/examples/src/main/java/org/apache/kafka/streams/examples/wordcount/WordCountProcessorDemo.java
+++ 
b/streams/examples/src/main/java/org/apache/kafka/streams/examples/wordcount/WordCountProcessorDemo.java
@@ -42,7 +42,7 @@ import java.util.Properties;
  * is an updated count of a single word.
  *
  * Before running this example you must create the source topic (e.g. via 
bin/kafka-topics.sh --create ...)
- * and write some data to it (e.g. via bin-kafka-console-producer.sh). 
Otherwise you won't see any data arriving in the output topic.
+ * and write some data to it (e.g. via bin/kafka-console-producer.sh). 
Otherwise you won't see any data arriving in the output topic.
  */
 public class WordCountProcessorDemo {
 

Reply via email to