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 2016/12/16 01:26:48 UTC

kafka git commit: MINOR: Fix typo on introduction page

Repository: kafka
Updated Branches:
  refs/heads/trunk 056ed8660 -> e55205b81


MINOR: Fix typo on introduction page

Author: ash <as...@qburst.com>

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

Closes #2259 from ashishg-qburst/intro


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

Branch: refs/heads/trunk
Commit: e55205b810b6717c5135a463d2fe98975b117187
Parents: 056ed86
Author: Hikiko Murakami <as...@qburst.com>
Authored: Thu Dec 15 17:26:44 2016 -0800
Committer: Guozhang Wang <wa...@gmail.com>
Committed: Thu Dec 15 17:26:44 2016 -0800

----------------------------------------------------------------------
 docs/introduction.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/e55205b8/docs/introduction.html
----------------------------------------------------------------------
diff --git a/docs/introduction.html b/docs/introduction.html
index f1bf488..7ff62f9 100644
--- a/docs/introduction.html
+++ b/docs/introduction.html
@@ -41,7 +41,7 @@
   <p>Kafka has four core APIs:</p>
   <div style="overflow: hidden;">
       <ul style="float: left; width: 40%;">
-      <li>The <a href="/documentation.html#producerapi">Producer API</a> allows an application to publish a stream records to one or more Kafka topics.
+      <li>The <a href="/documentation.html#producerapi">Producer API</a> allows an application to publish a stream of records to one or more Kafka topics.
       <li>The <a href="/documentation.html#consumerapi">Consumer API</a> allows an application to subscribe to one or more topics and process the stream of records produced to them.
     <li>The <a href="/documentation.html#streams">Streams API</a> allows an application to act as a <i>stream processor</i>, consuming an input stream from one or more topics and producing an output stream to one or more output topics, effectively transforming the input streams to output streams.
     <li>The <a href="/documentation.html#connect">Connector API</a> allows building and running reusable producers or consumers that connect Kafka topics to existing applications or data systems. For example, a connector to a relational database might capture every change to a table.