This is an automated email from the ASF dual-hosted git repository.
dajac 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 62afd3baca1 MINOR: Fixing typo with CoordinatorRuntime Javadoc (#14461)
62afd3baca1 is described below
commit 62afd3baca1c88f30874120ffd10f41ebd3333c7
Author: vamossagar12 <[email protected]>
AuthorDate: Thu Sep 28 21:46:34 2023 +0530
MINOR: Fixing typo with CoordinatorRuntime Javadoc (#14461)
Reviewers: David Jacot <[email protected]>
---
.../org/apache/kafka/coordinator/group/runtime/CoordinatorRuntime.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/group-coordinator/src/main/java/org/apache/kafka/coordinator/group/runtime/CoordinatorRuntime.java
b/group-coordinator/src/main/java/org/apache/kafka/coordinator/group/runtime/CoordinatorRuntime.java
index 9cf277d80c4..8e0f53f5d0b 100644
---
a/group-coordinator/src/main/java/org/apache/kafka/coordinator/group/runtime/CoordinatorRuntime.java
+++
b/group-coordinator/src/main/java/org/apache/kafka/coordinator/group/runtime/CoordinatorRuntime.java
@@ -59,7 +59,7 @@ import java.util.function.Consumer;
*
* (1) A write operation, aka a request, can read the full and potentially
**uncommitted** state from state
* machine to handle the operation. A write operation typically generates a
response and a list of
- * records. The records are applies to the state machine and persisted to the
partition. The response
+ * records. The records are applied to the state machine and persisted to the
partition. The response
* is parked until the records are committed and delivered when they are.
*
* (2) A read operation, aka a request, can only read the committed state from
the state machine to handle