You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2017/11/23 14:23:47 UTC

kafka git commit: MINOR: fix typo in ProducerConfig doc

Repository: kafka
Updated Branches:
  refs/heads/trunk bc852baff -> 67ba4c4ea


MINOR: fix typo in ProducerConfig doc

Author: Nick Chiu <ni...@jobcloud.ch>

Reviewers: Ismael Juma <is...@juma.me.uk>

Closes #4249 from nick-zh/trunk


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

Branch: refs/heads/trunk
Commit: 67ba4c4eaed830df3132aea2b50bca076be4edd2
Parents: bc852ba
Author: Nick Chiu <ni...@jobcloud.ch>
Authored: Thu Nov 23 14:23:43 2017 +0000
Committer: Ismael Juma <is...@juma.me.uk>
Committed: Thu Nov 23 14:23:43 2017 +0000

----------------------------------------------------------------------
 .../java/org/apache/kafka/clients/producer/ProducerConfig.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/67ba4c4e/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java
----------------------------------------------------------------------
diff --git a/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java b/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java
index 3847414..2dcf38c 100644
--- a/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java
+++ b/clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java
@@ -96,7 +96,7 @@ public class ProducerConfig extends AbstractConfig {
                                                 + "we get <code>" + BATCH_SIZE_CONFIG + "</code> worth of records for a partition it will be sent immediately regardless of this "
                                                 + "setting, however if we have fewer than this many bytes accumulated for this partition we will 'linger' for the "
                                                 + "specified time waiting for more records to show up. This setting defaults to 0 (i.e. no delay). Setting <code>" + LINGER_MS_CONFIG + "=5</code>, "
-                                                + "for example, would have the effect of reducing the number of requests sent but would add up to 5ms of latency to records sent in the absense of load.";
+                                                + "for example, would have the effect of reducing the number of requests sent but would add up to 5ms of latency to records sent in the absence of load.";
 
     /** <code>client.id</code> */
     public static final String CLIENT_ID_CONFIG = CommonClientConfigs.CLIENT_ID_CONFIG;