You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jg...@apache.org on 2016/10/10 17:00:44 UTC

[2/2] kafka git commit: MINOR: Fixed incomplete sentence in introduction docs

MINOR: Fixed incomplete sentence in introduction docs

Author: Jakub Dziworski <ja...@gmail.com>

Reviewers: Guozhang Wang <wa...@gmail.com>, Jason Gustafson <ja...@confluent.io>

Closes #1994 from JakubDziworski/doc_fix


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

Branch: refs/heads/0.10.1
Commit: 8cd3875a2fb47b8e67bb5122fe77913f121515df
Parents: 210ffe2
Author: Jakub Dziworski <ja...@gmail.com>
Authored: Mon Oct 10 09:26:37 2016 -0700
Committer: Jason Gustafson <ja...@confluent.io>
Committed: Mon Oct 10 10:00:43 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/kafka/blob/8cd3875a/docs/introduction.html
----------------------------------------------------------------------
diff --git a/docs/introduction.html b/docs/introduction.html
index 147210f..fb05f68 100644
--- a/docs/introduction.html
+++ b/docs/introduction.html
@@ -47,7 +47,7 @@ Kafka has four core APIs:
     <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#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 
+	<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.
 </ul>
 <p>
 In Kafka the communication between the clients and the servers is done with a simple, high-performance, language agnostic <a href="https://kafka.apache.org/protocol.html">TCP protocol</a>. This protocol is versioned and maintains backwards compatibility with older version. We provide a Java client for Kafka, but clients are available in <a href="https://cwiki.apache.org/confluence/display/KAFKA/Clients">many languages</a>.