File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments