mirror of https://github.com/apache/kafka.git
MINOR: Fix small warning on javadoc and scaladoc (#11049)
Escape the `>` character in javadoc
Escape the `$` character when part of `${}` in scaladoc as this is the way to reference a variable
Reviewers: Matthias J. Sax <matthias@confluent.io>
This commit is contained in:
parent
7471805989
commit
5f1810209f
|
|
@ -33,7 +33,7 @@ import org.apache.kafka.server.common.ApiMessageAndVersion;
|
|||
* <p></p>
|
||||
* <pre>
|
||||
* [data_frame_version header message]
|
||||
* header => [api_key version]
|
||||
* header => [api_key version]
|
||||
*
|
||||
* data_frame_version : This is the header version, current value is 0. Header includes both api_key and version.
|
||||
* api_key : apiKey of {@code ApiMessageAndVersion} object.
|
||||
|
|
|
|||
|
|
@ -404,7 +404,7 @@ class KStream[K, V](val inner: KStreamJ[K, V]) {
|
|||
* <p>
|
||||
* The created topic is considered as an internal topic and is meant to be used only by the current Kafka Streams instance.
|
||||
* Similar to auto-repartitioning, the topic will be created with infinite retention time and data will be automatically purged by Kafka Streams.
|
||||
* The topic will be named as "${applicationId}-<name>-repartition", where "applicationId" is user-specified in
|
||||
* The topic will be named as "\${applicationId}-<name>-repartition", where "applicationId" is user-specified in
|
||||
* `StreamsConfig` via parameter `APPLICATION_ID_CONFIG APPLICATION_ID_CONFIG`,
|
||||
* "<name>" is either provided via `Repartitioned#as(String)` or an internally
|
||||
* generated name, and "-repartition" is a fixed suffix.
|
||||
|
|
|
|||
Loading…
Reference in New Issue