Skip to content

Commit

Permalink
Add missing backslash (apache#4474)
Browse files Browse the repository at this point in the history
There're missing backslash when running the quick start tutorial.

Reviewers: Guozhang Wang <[email protected]>
  • Loading branch information
yujhe authored and guozhangwang committed Jan 26, 2018
1 parent c615c59 commit decfb83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/streams/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ <h4><a id="quickstart_streams_process" href="#quickstart_streams_process">Step 5
</p>

<pre class="brush: bash;">
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
--topic streams-wordcount-output \
--from-beginning \
--formatter kafka.tools.DefaultMessageFormatter \
Expand Down Expand Up @@ -252,7 +252,7 @@ <h4><a id="quickstart_streams_process" href="#quickstart_streams_process">Step 5
In your other terminal in which the console consumer is running, you will observe that the WordCount application wrote new output data:

<pre class="brush: bash;">
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
--topic streams-wordcount-output \
--from-beginning \
--formatter kafka.tools.DefaultMessageFormatter \
Expand Down Expand Up @@ -287,7 +287,7 @@ <h4><a id="quickstart_streams_process" href="#quickstart_streams_process">Step 5
The <b>streams-wordcount-output</b> topic will subsequently show the corresponding updated word counts (see last three lines):

<pre class="brush: bash;">
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092
&gt; bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 \
--topic streams-wordcount-output \
--from-beginning \
--formatter kafka.tools.DefaultMessageFormatter \
Expand Down

0 comments on commit decfb83

Please sign in to comment.