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 0cd597abd chore(ci): bump crate-ci/typos to v1.37.1 (#3206)
0cd597abd is described below
commit 0cd597abdaf05adcdd67064017b336fdd35bf5d7
Author: Aleks Lozovyuk <[email protected]>
AuthorDate: Thu Oct 2 05:19:27 2025 +0300
chore(ci): bump crate-ci/typos to v1.37.1 (#3206)
---
.github/config/typos.toml | 3 +++
.github/workflows/kvrocks.yaml | 2 +-
src/common/bitfield_util.h | 4 ++--
3 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/.github/config/typos.toml b/.github/config/typos.toml
index e63023b47..2b3be38f1 100644
--- a/.github/config/typos.toml
+++ b/.github/config/typos.toml
@@ -44,3 +44,6 @@ ignore-hidden = false
#Used as a short naming into tests
"typ" = "typ"
+
+#Fix name (Yann Collet)
+"Collet" = "Collet"
diff --git a/.github/workflows/kvrocks.yaml b/.github/workflows/kvrocks.yaml
index 5e7cd6e91..79800b2be 100644
--- a/.github/workflows/kvrocks.yaml
+++ b/.github/workflows/kvrocks.yaml
@@ -58,7 +58,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check typos
- uses: crate-ci/[email protected]
+ uses: crate-ci/[email protected]
with:
config: .github/config/typos.toml
diff --git a/src/common/bitfield_util.h b/src/common/bitfield_util.h
index 63d27980d..5eae2c23a 100644
--- a/src/common/bitfield_util.h
+++ b/src/common/bitfield_util.h
@@ -115,13 +115,13 @@ struct BitfieldOperation {
};
namespace detail {
-// Let value add incr, according to the bits limit and overflow rule. The
value is reguarded as a signed integer.
+// Let value add incr, according to the bits limit and overflow rule. The
value is regarded as a signed integer.
// Return true if overflow. Status is not ok iff calling
BitfieldEncoding::IsSupportedBitLengths()
// for given op return false.
StatusOr<bool> SignedBitfieldPlus(uint64_t value, int64_t incr, uint8_t bits,
BitfieldOverflowBehavior overflow,
uint64_t *dst);
-// Let value add incr, according to the bits limit and overflow rule. The
value is reguarded as an unsigned integer.
+// Let value add incr, according to the bits limit and overflow rule. The
value is regarded as an unsigned integer.
// Return true if overflow. Status is not ok iff calling
BitfieldEncoding::IsSupportedBitLengths()
// for given op return false.
StatusOr<bool> UnsignedBitfieldPlus(uint64_t value, int64_t incr, uint8_t
bits, BitfieldOverflowBehavior overflow,