You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2017/06/20 16:35:03 UTC

kafka git commit: MINOR: Remove version in the uses page

Repository: kafka
Updated Branches:
  refs/heads/trunk ea2a21dda -> 9790d5aba


MINOR: Remove version in the uses page

This is contributed by Hao Chen.

Author: Guozhang Wang <wa...@gmail.com>

Reviewers: Guozhang Wang <wa...@gmail.com>, Ismael Juma <is...@juma.me.uk>

Closes #3366 from guozhangwang/KMinor-fix-streams-link-in-uses


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

Branch: refs/heads/trunk
Commit: 9790d5aba05256a203ef3763f91972f9b2f94a56
Parents: ea2a21d
Author: Hao Chen <ha...@apache.org>
Authored: Tue Jun 20 09:34:59 2017 -0700
Committer: Guozhang Wang <wa...@gmail.com>
Committed: Tue Jun 20 09:34:59 2017 -0700

----------------------------------------------------------------------
 docs/implementation.html | 2 +-
 docs/uses.html           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/9790d5ab/docs/implementation.html
----------------------------------------------------------------------
diff --git a/docs/implementation.html b/docs/implementation.html
index 5ff75ec..71c0995 100644
--- a/docs/implementation.html
+++ b/docs/implementation.html
@@ -147,7 +147,7 @@
     <p>
     Messages consist of a fixed-size header, a variable length opaque key byte array and a variable length opaque value byte array. The header contains the following fields:
     <ul>
-        <li> A CRC32 checksum to detect corruption or truncation. <li/>
+        <li> A CRC32 checksum to detect corruption or truncation. </li>
         <li> A format version. </li>
         <li> An attributes identifier </li>
         <li> A timestamp </li>

http://git-wip-us.apache.org/repos/asf/kafka/blob/9790d5ab/docs/uses.html
----------------------------------------------------------------------
diff --git a/docs/uses.html b/docs/uses.html
index 4e88859..bf134fc 100644
--- a/docs/uses.html
+++ b/docs/uses.html
@@ -63,7 +63,7 @@ For example, a processing pipeline for recommending news articles might crawl ar
 further processing might normalize or deduplicate this content and published the cleansed article content to a new topic;
 a final processing stage might attempt to recommend this content to users.
 Such processing pipelines create graphs of real-time data flows based on the individual topics.
-Starting in 0.10.0.0, a light-weight but powerful stream processing library called <a href="/{{version}}/documentation/streams">Kafka Streams</a>
+Starting in 0.10.0.0, a light-weight but powerful stream processing library called <a href="/documentation/streams">Kafka Streams</a>
 is available in Apache Kafka to perform such data processing as described above.
 Apart from Kafka Streams, alternative open source stream processing tools include <a href="https://storm.apache.org/">Apache Storm</a> and
 <a href="http://samza.apache.org/">Apache Samza</a>.