Repository: kafka Updated Branches: refs/heads/trunk 0a1689a74 -> a281fe17f
KAFKA-5215; Small Javadoc fixes for AdminClient#describeTopics Author: Colin P. Mccabe <[email protected]> Reviewers: Roger Hoover <[email protected]>, Ismael Juma <[email protected]> Closes #3013 from cmccabe/KAFKA-5215 Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/a281fe17 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/a281fe17 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/a281fe17 Branch: refs/heads/trunk Commit: a281fe17fe1dda9a41890648299b74fa2449552a Parents: 0a1689a Author: Colin P. Mccabe <[email protected]> Authored: Tue May 16 11:55:58 2017 +0100 Committer: Ismael Juma <[email protected]> Committed: Tue May 16 11:56:02 2017 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/kafka/clients/admin/AdminClient.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/a281fe17/clients/src/main/java/org/apache/kafka/clients/admin/AdminClient.java ---------------------------------------------------------------------- diff --git a/clients/src/main/java/org/apache/kafka/clients/admin/AdminClient.java b/clients/src/main/java/org/apache/kafka/clients/admin/AdminClient.java index a97219b..7db5e6e 100644 --- a/clients/src/main/java/org/apache/kafka/clients/admin/AdminClient.java +++ b/clients/src/main/java/org/apache/kafka/clients/admin/AdminClient.java @@ -118,7 +118,7 @@ public abstract class AdminClient implements AutoCloseable { public abstract ListTopicsResults listTopics(ListTopicsOptions options); /** - * Descripe an individual topic in the cluster, with the default options. + * Describe some topics in the cluster, with the default options. * * See {@link AdminClient#describeTopics(Collection<String>, DescribeTopicsOptions)} * @@ -131,10 +131,10 @@ public abstract class AdminClient implements AutoCloseable { } /** - * Descripe an individual topic in the cluster. + * Describe some topics in the cluster. * * Note that if auto.create.topics.enable is true on the brokers, - * AdminClient#describeTopic(topicName) may create a topic named topicName. + * describeTopics(topicName, ...) may create a topic named topicName. * There are two workarounds: either use AdminClient#listTopics and ensure * that the topic is present before describing, or disable * auto.create.topics.enable.
