Skip to content

Commit 8df3c8a

Browse files
committed
spelling: nonexistent
Signed-off-by: Josh Soref <[email protected]>
1 parent 50b727d commit 8df3c8a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/test_asyncio/test_bloom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async def do_verify():
8989
await decoded_r.bf().add("myBloom", x)
9090
rv = await decoded_r.bf().exists("myBloom", x)
9191
assert rv
92-
rv = await decoded_r.bf().exists("myBloom", f"nonexist_{x}")
92+
rv = await decoded_r.bf().exists("myBloom", f"nonexistent_{x}")
9393
res += rv == x
9494
assert res < 5
9595

tests/test_bloom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def do_verify():
112112
client.bf().add("myBloom", x)
113113
rv = client.bf().exists("myBloom", x)
114114
assert rv
115-
rv = client.bf().exists("myBloom", f"nonexist_{x}")
115+
rv = client.bf().exists("myBloom", f"nonexistent_{x}")
116116
res += rv == x
117117
assert res < 5
118118

valkey/commands/cluster.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def delete(self, *keys: KeyT) -> ResponseT:
225225
The keys are first split up into slots
226226
and then an DEL command is sent for every slot
227227
228-
Non-existent keys are ignored.
228+
Nonexistent keys are ignored.
229229
Returns the number of keys that were deleted.
230230
231231
For more information see https://valkey.io/commands/del
@@ -240,7 +240,7 @@ def touch(self, *keys: KeyT) -> ResponseT:
240240
The keys are first split up into slots
241241
and then an TOUCH command is sent for every slot
242242
243-
Non-existent keys are ignored.
243+
Nonexistent keys are ignored.
244244
Returns the number of keys that were touched.
245245
246246
For more information see https://valkey.io/commands/touch
@@ -254,7 +254,7 @@ def unlink(self, *keys: KeyT) -> ResponseT:
254254
The keys are first split up into slots
255255
and then an TOUCH command is sent for every slot
256256
257-
Non-existent keys are ignored.
257+
Nonexistent keys are ignored.
258258
Returns the number of keys that were unlinked.
259259
260260
For more information see https://valkey.io/commands/unlink

0 commit comments

Comments
 (0)