You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gw...@apache.org on 2015/12/08 21:56:07 UTC

kafka git commit: KAFKA-2957: Fix typos in Kafka documentation

Repository: kafka
Updated Branches:
  refs/heads/0.9.0 168b759e6 -> 1f98b0315


KAFKA-2957: Fix typos in Kafka documentation

Author: Vahid Hashemian <va...@us.ibm.com>

Reviewers: Gwen Shapira

Closes #641 from vahidhashemian/KAFKA-2957


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

Branch: refs/heads/0.9.0
Commit: 1f98b0315c92cf8c89f07241485fa6db8b496fdc
Parents: 168b759
Author: Vahid Hashemian <va...@us.ibm.com>
Authored: Tue Dec 8 12:55:57 2015 -0800
Committer: Gwen Shapira <cs...@gmail.com>
Committed: Tue Dec 8 12:55:57 2015 -0800

----------------------------------------------------------------------
 docs/api.html    | 2 +-
 docs/design.html | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/1f98b031/docs/api.html
----------------------------------------------------------------------
diff --git a/docs/api.html b/docs/api.html
index 87ba559..861eec3 100644
--- a/docs/api.html
+++ b/docs/api.html
@@ -39,7 +39,7 @@ here</a>.
 <h3><a id="consumerapi" href="#consumerapi">2.2 Consumer API</a></h3>
 
 As of the 0.9.0 release we have added a new Java consumer to replace our existing high-level ZooKeeper-based consumer
-and low-level consumer APIs. This client is considered beta quality. To ensure a smooth upgrade paths
+and low-level consumer APIs. This client is considered beta quality. To ensure a smooth upgrade path
 for users, we still maintain the old 0.8 consumer clients that continue to work on an 0.9 Kafka cluster.
 
 In the following sections we introduce both the old 0.8 consumer APIs (both high-level ConsumerConnector and low-level SimpleConsumer)

http://git-wip-us.apache.org/repos/asf/kafka/blob/1f98b031/docs/design.html
----------------------------------------------------------------------
diff --git a/docs/design.html b/docs/design.html
index 5d3090c..e028468 100644
--- a/docs/design.html
+++ b/docs/design.html
@@ -27,9 +27,9 @@ It also meant the system would have to handle low-latency delivery to handle mor
 <p>
 We wanted to support partitioned, distributed, real-time processing of these feeds to create new, derived feeds. This motivated our partitioning and consumer model.
 <p>
-Finally in cases where the stream is fed into other data systems for serving we knew the system would have to be able to guarantee fault-tolerance in the presence of machine failures.
+Finally in cases where the stream is fed into other data systems for serving, we knew the system would have to be able to guarantee fault-tolerance in the presence of machine failures.
 <p>
-Supporting these uses led use to a design with a number of unique elements, more akin to a database log then a traditional messaging system. We will outline some elements of the design in the following sections.
+Supporting these uses led us to a design with a number of unique elements, more akin to a database log than a traditional messaging system. We will outline some elements of the design in the following sections.
 
 <h3><a id="persistence" href="#persistence">4.2 Persistence</a></h3>
 <h4><a id="design_filesystem" href="#design_filesystem">Don't fear the filesystem!</a></h4>