This is an automated email from the ASF dual-hosted git repository.
hulk pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new 8f56bf04a chore: fix typos in README and redis_bitmap.cc (#3390)
8f56bf04a is described below
commit 8f56bf04ac5bdf1b7455167d14faffb2ccc94d9d
Author: Sanjana <[email protected]>
AuthorDate: Mon Mar 16 07:24:31 2026 +0530
chore: fix typos in README and redis_bitmap.cc (#3390)
---
README.md | 2 +-
src/types/redis_bitmap.cc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 314213875..03e71af8b 100644
--- a/README.md
+++ b/README.md
@@ -144,7 +144,7 @@ $ ./x.py test go # run Golang (unit and integration) test
cases
## Namespace
-Namespace is used to isolate data between users. Unlike all the Redis
databases can be visited by `requirepass`, we use one token per namespace.
`requirepass` is regraded as admin token, and only admin token allows to access
the namespace command, as well as some commands like `config`, `slaveof`,
`bgsave`, etc. See the [Namespace](https://kvrocks.apache.org/docs/namespace)
page for more details.
+Namespace is used to isolate data between users. Unlike all the Redis
databases can be visited by `requirepass`, we use one token per namespace.
`requirepass` is regarded as admin token, and only admin token allows to access
the namespace command, as well as some commands like `config`, `slaveof`,
`bgsave`, etc. See the [Namespace](https://kvrocks.apache.org/docs/namespace)
page for more details.
```sh
# add token
diff --git a/src/types/redis_bitmap.cc b/src/types/redis_bitmap.cc
index 00c8d1b3f..8a7cee919 100644
--- a/src/types/redis_bitmap.cc
+++ b/src/types/redis_bitmap.cc
@@ -878,7 +878,7 @@ rocksdb::Status
Bitmap::runBitfieldOperationsWithCache(engine::Context &ctx, Seg
return segment_status;
}
- // Covert the bitfield from a buffer to an integer.
+ // Convert the bitfield from a buffer to an integer.
uint64_t unsigned_old_value = 0;
auto s = GetBitfieldInteger(bitfield, op.offset, op.encoding,
&unsigned_old_value);
if (!s.ok()) {