diff --git a/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java b/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java index b91e2c52ed0..b70e1a3d406 100644 --- a/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java +++ b/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java @@ -140,7 +140,7 @@ public class KafkaProducer implements Producer { /** * A producer is instantiated by providing a set of key-value pairs as configuration. Valid configuration strings - * are documented here. Values can be + * are documented here. Values can be * either strings or Objects of the appropriate type (for example a numeric configuration would accept either the * string "42" or the integer 42). * @param configs The producer configs @@ -152,7 +152,7 @@ public class KafkaProducer implements Producer { /** * A producer is instantiated by providing a set of key-value pairs as configuration, a key and a value {@link Serializer}. - * Valid configuration strings are documented here. + * Valid configuration strings are documented here. * Values can be either strings or Objects of the appropriate type (for example a numeric configuration would accept * either the string "42" or the integer 42). * @param configs The producer configs @@ -168,7 +168,7 @@ public class KafkaProducer implements Producer { /** * A producer is instantiated by providing a set of key-value pairs as configuration. Valid configuration strings - * are documented here. + * are documented here. * @param properties The producer configs */ public KafkaProducer(Properties properties) { @@ -177,7 +177,7 @@ public class KafkaProducer implements Producer { /** * A producer is instantiated by providing a set of key-value pairs as configuration, a key and a value {@link Serializer}. - * Valid configuration strings are documented here. + * Valid configuration strings are documented here. * @param properties The producer configs * @param keySerializer The serializer for key that implements {@link Serializer}. The configure() method won't be * called in the producer when the serializer is passed in directly. 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 ca1c7fedbde..5a575553d30 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 @@ -29,7 +29,7 @@ import org.apache.kafka.common.serialization.Serializer; /** * Configuration for the Kafka Producer. Documentation for these configurations can be found in the Kafka documentation + * href="http://kafka.apache.org/documentation.html#newproducerconfigs">Kafka documentation */ public class ProducerConfig extends AbstractConfig {