You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ch...@apache.org on 2021/06/19 16:00:05 UTC

[kafka] branch trunk updated: MINOR: Addressed minor typos in READMEs. (#10905)

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

chia7712 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 d3709da  MINOR: Addressed minor typos in READMEs. (#10905)
d3709da is described below

commit d3709dafbe4d77e0635d3a39bbb9a4f14be159bf
Author: Satish Duggana <sa...@apache.org>
AuthorDate: Sat Jun 19 21:28:57 2021 +0530

    MINOR: Addressed minor typos in READMEs. (#10905)
    
    Reviewers: Chia-Ping Tsai <ch...@gmail.com>
---
 clients/src/main/resources/common/message/README.md | 6 +++---
 core/src/test/java/kafka/test/junit/README.md       | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/clients/src/main/resources/common/message/README.md b/clients/src/main/resources/common/message/README.md
index 29a8491..6185b87 100644
--- a/clients/src/main/resources/common/message/README.md
+++ b/clients/src/main/resources/common/message/README.md
@@ -135,7 +135,7 @@ version.
 You can remove support for a tagged field from a specific version of a message,
 but you can't reuse a tag once it has been used for something else.  Once tags
 have been used for something, they can't be used for anything else, without
-breaking compatibilty.
+breaking compatibility.
 
 Note that tagged fields can only be added to "flexible" message versions.
 
@@ -145,7 +145,7 @@ Kafka serialization has been improved over time to be more flexible and
 efficient.  Message versions that contain these improvements are referred to as
 "flexible versions."
 
-In flexible verisons, variable-length fields such as strings, arrays, and bytes
+In flexible versions, variable-length fields such as strings, arrays, and bytes
 fields are serialized in a more efficient way that saves space.  The new
 serialization types start with compact.  For example COMPACT_STRING is a more
 efficient form of STRING.
@@ -190,7 +190,7 @@ been set:
 
 * Array fields default to empty.
 
-You can specify "null" as a default value for a string field by specifing the
+You can specify "null" as a default value for a string field by specifying the
 literal string "null".  Note that you can only specify null as a default if all
 versions of the field are nullable.
 
diff --git a/core/src/test/java/kafka/test/junit/README.md b/core/src/test/java/kafka/test/junit/README.md
index dbd2bf4..6df7a26 100644
--- a/core/src/test/java/kafka/test/junit/README.md
+++ b/core/src/test/java/kafka/test/junit/README.md
@@ -135,5 +135,5 @@ class SomeTestClass(helper: IntegrationTestHelper) {
 
 # Gotchas
 * Test methods annotated with JUnit's `@Test` will still be run, but no cluster will be started and no dependency 
-  injection will happen. This is generally not what you want
-* Even though ClusterConfig is accessible and mutable inside the test method, changing it will have no affect on the cluster 
\ No newline at end of file
+  injection will happen. This is generally not what you want.
+* Even though ClusterConfig is accessible and mutable inside the test method, changing it will have no effect on the cluster.
\ No newline at end of file