Skip to content

Commit

Permalink
Fix typo in string reactive commands #1632
Browse files Browse the repository at this point in the history
  • Loading branch information
paualarco authored and mp911de committed Mar 2, 2021
1 parent f11f0e1 commit 641d40b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public interface RedisStringReactiveCommands<K, V> {
* returned.
*
* If we look for clear bits (the bit argument is 0) and the string only contains bit set to 1, the function returns
* the first bit not part of the string on the right. So if the string is tree bytes set to the value 0xff the
* the first bit not part of the string on the right. So if the string is three bytes set to the value 0xff the
* command {@code BITPOS key 0} will return 24, since up to bit 23 all the bits are 1.
*
* Basically the function consider the right of the string as padded with zeros if you look for clear bits and
Expand All @@ -100,7 +100,7 @@ public interface RedisStringReactiveCommands<K, V> {
* returned.
*
* If we look for clear bits (the bit argument is 0) and the string only contains bit set to 1, the function returns
* the first bit not part of the string on the right. So if the string is tree bytes set to the value 0xff the
* the first bit not part of the string on the right. So if the string is three bytes set to the value 0xff the
* command {@code BITPOS key 0} will return 24, since up to bit 23 all the bits are 1.
*
* Basically the function consider the right of the string as padded with zeros if you look for clear bits and
Expand All @@ -122,7 +122,7 @@ public interface RedisStringReactiveCommands<K, V> {
* returned.
*
* If we look for clear bits (the bit argument is 0) and the string only contains bit set to 1, the function returns
* the first bit not part of the string on the right. So if the string is tree bytes set to the value 0xff the
* the first bit not part of the string on the right. So if the string is three bytes set to the value 0xff the
* command {@code BITPOS key 0} will return 24, since up to bit 23 all the bits are 1.
*
* Basically the function consider the right of the string as padded with zeros if you look for clear bits and
Expand Down

0 comments on commit 641d40b

Please sign in to comment.