You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by bb...@apache.org on 2020/11/30 20:39:30 UTC

[kafka] branch 2.7 updated: MINOR: fix listeners doc to close properly (#9655)

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

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


The following commit(s) were added to refs/heads/2.7 by this push:
     new 9351e1e  MINOR: fix listeners doc to close <code> properly (#9655)
9351e1e is described below

commit 9351e1e410d3bf340a78f8cdc8f0f7f7bf7dad35
Author: Tom Bentley <to...@users.noreply.github.com>
AuthorDate: Wed Nov 25 19:00:02 2020 +0000

    MINOR: fix listeners doc to close <code> properly (#9655)
    
    Fixes a problem with an incorrectly closed <code> in the doc for listeners.
    
    Reviewers: Bill Bejeck <bb...@apache.org>
---
 core/src/main/scala/kafka/server/KafkaConfig.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/scala/kafka/server/KafkaConfig.scala b/core/src/main/scala/kafka/server/KafkaConfig.scala
index a580570..60eee98 100755
--- a/core/src/main/scala/kafka/server/KafkaConfig.scala
+++ b/core/src/main/scala/kafka/server/KafkaConfig.scala
@@ -645,7 +645,7 @@ object KafkaConfig {
   "Use <code>listeners</code> instead. \n" +
   "hostname of broker. If this is set, it will only bind to this address. If this is not set, it will bind to all interfaces"
   val ListenersDoc = "Listener List - Comma-separated list of URIs we will listen on and the listener names." +
-    s" If the listener name is not a security protocol, <code>$ListenerSecurityProtocolMapProp<code> must also be set.\n" +
+    s" If the listener name is not a security protocol, <code>$ListenerSecurityProtocolMapProp</code> must also be set.\n" +
     " Listener names and port numbers must be unique.\n" +
     " Specify hostname as 0.0.0.0 to bind to all interfaces.\n" +
     " Leave hostname empty to bind to default interface.\n" +