This is an automated email from the ASF dual-hosted git repository.
mimaison 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 8ace44ef07f MINOR: Fix typos in documentation (#22696)
8ace44ef07f is described below
commit 8ace44ef07f9e7be43c28601ce02e63342a28db9
Author: Joanna-D <[email protected]>
AuthorDate: Mon Jun 29 17:28:06 2026 +0800
MINOR: Fix typos in documentation (#22696)
Reviewers: Mickael Maison <[email protected]>
Co-authored-by: dongjiao <[email protected]>
---
docs/streams/developer-guide/memory-mgmt.md | 2 +-
docs/streams/developer-guide/testing.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/streams/developer-guide/memory-mgmt.md
b/docs/streams/developer-guide/memory-mgmt.md
index 29f0d0776ba..c63f997d16e 100644
--- a/docs/streams/developer-guide/memory-mgmt.md
+++ b/docs/streams/developer-guide/memory-mgmt.md
@@ -124,7 +124,7 @@ Following from the example first shown in section [State
Stores](processor-api.h
Record caches are not supported for [versioned state
stores](processor-api.html#streams-developer-guide-state-store-versioned).
-To avoid reading stale data, you can `flush()` the store before creating the
iterator. Note, that flushing too often can lead to performance degration if
RocksDB is used, so we advice to avoid flushing manually in general.
+To avoid reading stale data, you can `flush()` the store before creating the
iterator. Note, that flushing too often can lead to performance degradation if
RocksDB is used, so we advise to avoid flushing manually in general.
# RocksDB
diff --git a/docs/streams/developer-guide/testing.md
b/docs/streams/developer-guide/testing.md
index 27b7df4d105..25bb92c722c 100644
--- a/docs/streams/developer-guide/testing.md
+++ b/docs/streams/developer-guide/testing.md
@@ -84,7 +84,7 @@ Additionally, you can access state stores via the test driver
before or after a
KeyValueStore store = testDriver.getKeyValueStore("store-name");
-Note, that you should always close the test driver at the end to make sure all
resources are release properly.
+Note, that you should always close the test driver at the end to make sure all
resources are released properly.
testDriver.close();