Skip to content

Commit 50a9a1f

Browse files
committed
fixed typo
1 parent 99c6d5d commit 50a9a1f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

django_valkey/async_cache/client/default.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -466,11 +466,11 @@ async def get_many(
466466
client = await self._get_client(write=False, client=client)
467467

468468
try:
469-
pipline = await client.pipeline()
469+
pipeline = await client.pipeline()
470470
for key in keys:
471471
key = await self.make_key(key, version=version)
472-
await pipline.get(key)
473-
values = await pipline.execute()
472+
await pipeline.get(key)
473+
values = await pipeline.execute()
474474
except _main_exceptions as e:
475475
raise ConnectionInterrupted(connection=client) from e
476476

@@ -606,7 +606,7 @@ async def decr(
606606
client: AValkey | Any | None = None,
607607
) -> int:
608608
"""
609-
Decreace delta to value in the cache. If the key does not exist, raise a
609+
Decrease delta to value in the cache. If the key does not exist, raise a
610610
ValueError exception.
611611
"""
612612
return await self._incr(key, delta=-delta, version=version, client=client)

0 commit comments

Comments
 (0)