You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by gu...@apache.org on 2016/01/08 19:43:55 UTC

kafka git commit: MINOR: Fix typos in Kafka website page

Repository: kafka
Updated Branches:
  refs/heads/trunk 49778b184 -> ccdf55274


MINOR: Fix typos in Kafka website page

Fix two minor typos in Kafka official website page.

Author: Gabriel Zhang <sm...@yahoo.com>

Reviewers: Ismael Juma, Guozhang Wang

Closes #742 from smalldirector/kafka-document-typos-fix


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/ccdf5527
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/ccdf5527
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/ccdf5527

Branch: refs/heads/trunk
Commit: ccdf552749135b2c40f5a0afb4aa121115165ed2
Parents: 49778b1
Author: Gabriel Zhang <sm...@yahoo.com>
Authored: Fri Jan 8 10:43:52 2016 -0800
Committer: Guozhang Wang <wa...@gmail.com>
Committed: Fri Jan 8 10:43:52 2016 -0800

----------------------------------------------------------------------
 core/src/main/scala/kafka/server/KafkaConfig.scala | 2 +-
 docs/upgrade.html                                  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/ccdf5527/core/src/main/scala/kafka/server/KafkaConfig.scala
----------------------------------------------------------------------
diff --git a/core/src/main/scala/kafka/server/KafkaConfig.scala b/core/src/main/scala/kafka/server/KafkaConfig.scala
index fc87a4d..54b79ab 100755
--- a/core/src/main/scala/kafka/server/KafkaConfig.scala
+++ b/core/src/main/scala/kafka/server/KafkaConfig.scala
@@ -472,7 +472,7 @@ object KafkaConfig {
 
   val DeleteTopicEnableDoc = "Enables delete topic. Delete topic through the admin tool will have no effect if this config is turned off"
   val CompressionTypeDoc = "Specify the final compression type for a given topic. This configuration accepts the standard compression codecs " +
-  "('gzip', 'snappy', lz4). It additionally accepts 'uncompressed' which is equivalent to no compression; and " +
+  "('gzip', 'snappy', 'lz4'). It additionally accepts 'uncompressed' which is equivalent to no compression; and " +
   "'producer' which means retain the original compression codec set by the producer."
 
   /** ********* Kafka Metrics Configuration ***********/

http://git-wip-us.apache.org/repos/asf/kafka/blob/ccdf5527/docs/upgrade.html
----------------------------------------------------------------------
diff --git a/docs/upgrade.html b/docs/upgrade.html
index 98ac570..eccd626 100644
--- a/docs/upgrade.html
+++ b/docs/upgrade.html
@@ -46,7 +46,7 @@
     <li> The kafka-topics.sh script (kafka.admin.TopicCommand) now exits with non-zero exit code on failure. </li>
     <li> The kafka-topics.sh script (kafka.admin.TopicCommand) will now print a warning when topic names risk metric collisions due to the use of a '.' or '_' in the topic name, and error in the case of an actual collision. </li>
     <li> The kafka-console-producer.sh script (kafka.tools.ConsoleProducer) will use the new producer instead of the old producer be default, and users have to specify 'old-producer' to use the old producer. </li>
-    <li> By default all command line tools will print all logging messages to stderr instead of stout. </li>
+    <li> By default all command line tools will print all logging messages to stderr instead of stdout. </li>
 </ul>
 
 <h5>Deprecations in 0.9.0.0</h5>