You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by da...@apache.org on 2021/05/17 07:38:05 UTC

[kafka] branch trunk updated: MINOR: Fix typo in `ClusterTool` (#10706)

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

dajac pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new e35f5c8  MINOR: Fix typo in `ClusterTool` (#10706)
e35f5c8 is described below

commit e35f5c88b17d26b7f31b34b9a00239e514c8a811
Author: Gunnar Morling <gu...@googlemail.com>
AuthorDate: Mon May 17 09:34:43 2021 +0200

    MINOR: Fix typo in `ClusterTool` (#10706)
    
    Reviewers: David Jacot <dj...@confluent.io>
---
 core/src/main/scala/kafka/tools/ClusterTool.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/scala/kafka/tools/ClusterTool.scala b/core/src/main/scala/kafka/tools/ClusterTool.scala
index a5e2a82..b868f72 100644
--- a/core/src/main/scala/kafka/tools/ClusterTool.scala
+++ b/core/src/main/scala/kafka/tools/ClusterTool.scala
@@ -40,7 +40,7 @@ object ClusterTool extends Logging {
       val clusterIdParser = subparsers.addParser("cluster-id").
         help("Get information about the ID of a cluster.")
       val unregisterParser = subparsers.addParser("unregister").
-        help("Unregister a broker..")
+        help("Unregister a broker.")
       List(clusterIdParser, unregisterParser).foreach(parser => {
         parser.addArgument("--bootstrap-server", "-b").
           action(store()).