You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ji...@apache.org on 2019/01/14 01:32:10 UTC

[flink] branch master updated: [hotfix] [docs] Fix kafka doc mistake classname

This is an automated email from the ASF dual-hosted git repository.

jincheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 43ec81f  [hotfix] [docs] Fix kafka doc mistake classname
43ec81f is described below

commit 43ec81f67e948e06f683b2987a10a8c1248e36b4
Author: sunjincheng121 <su...@gmail.com>
AuthorDate: Mon Jan 14 09:25:42 2019 +0800

    [hotfix] [docs] Fix kafka doc mistake classname
---
 docs/dev/connectors/kafka.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/dev/connectors/kafka.md b/docs/dev/connectors/kafka.md
index b7f65b5..936d36b 100644
--- a/docs/dev/connectors/kafka.md
+++ b/docs/dev/connectors/kafka.md
@@ -547,7 +547,7 @@ In the meanwhile, a possible workaround is to send *heartbeat messages* to all c
 
 ## Kafka Producer
 
-Flink’s Kafka Producer is called `FlinkKafkaProducer011` (or `010` for Kafka 0.10.0.x versions, etc. or just `FlinkKafkaConsumer` for Kafka >= 1.0.0 versions).
+Flink’s Kafka Producer is called `FlinkKafkaProducer011` (or `010` for Kafka 0.10.0.x versions, etc. or just `FlinkKafkaProducer` for Kafka >= 1.0.0 versions).
 It allows writing a stream of records to one or more Kafka topics.
 
 Example: