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 63c8d2b5482 MINOR: Replaced the grammatically incorrect phrase "if or
not" with "whether" (#21231)
63c8d2b5482 is described below
commit 63c8d2b548227eeed68b985ef77ae2400296d7e3
Author: cui <[email protected]>
AuthorDate: Tue Jan 13 19:58:28 2026 +0800
MINOR: Replaced the grammatically incorrect phrase "if or not" with
"whether" (#21231)
Replaced the grammatically incorrect phrase "if or not" with "whether"
in `clients/src/main/java/org/apache/kafka/common/utils/Shell.java`.
Reviewers: Chia-Ping Tsai <[email protected]>
---
clients/src/main/java/org/apache/kafka/common/utils/Shell.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clients/src/main/java/org/apache/kafka/common/utils/Shell.java
b/clients/src/main/java/org/apache/kafka/common/utils/Shell.java
index 09ea398fb2e..bbec711d017 100644
--- a/clients/src/main/java/org/apache/kafka/common/utils/Shell.java
+++ b/clients/src/main/java/org/apache/kafka/common/utils/Shell.java
@@ -48,7 +48,7 @@ public abstract class Shell {
private int exitCode;
private Process process; // sub process used to execute the command
- /* If or not script finished executing */
+ /* Whether the script finished executing */
private volatile AtomicBoolean completed;
/**