Skip to content

Commit 1c12a97

Browse files
committed
fixed typo
1 parent 722fbc8 commit 1c12a97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/source/commands/valkey_native_commands.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ atomic operations are done with ``mget()`` and ``mset()``
4444
>>> cache.mget(["a", "b"])
4545
{"a": 1, "b": 2}
4646
47-
the non atomic operations are done with ``get_many()`` and ``set_many()``doen
47+
the non atomic operations are done with ``get_many()`` and ``set_many()``:
4848

4949
.. code-block:: pycon
5050
@@ -132,7 +132,7 @@ you can also access the ttl of any sorted key in milliseconds, use the ``pttl``
132132
Expire & Persist
133133
****************
134134
135-
in addition to the ``ttl`` and ``pttl`` methods, you can use the ``persist`` method so the key would have infinite timout:
135+
in addition to the ``ttl`` and ``pttl`` methods, you can use the ``persist`` method so the key would have infinite timeout:
136136
137137
.. code-block:: pycon
138138
@@ -213,4 +213,4 @@ if the commands provided by django-valkey backend is not enough, or you want to
213213
<valkey.client.Valkey object at 0x2dc4510>
214214
215215
**Warning**: not all clients support this feature:
216-
ShardClient will raise an exception if tried to be used like this.
216+
ShardClient will raise an exception if tried to be used like this.

docs/source/configure/basic_configurations.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ the login for the user ``django`` would look like this:
3838
3939
you can also provide the password in the ``OPTIONS`` dictionary
4040
this is specially useful if you have a password that is not URL safe
41-
but *notice* that if a password is provided by the URL, it won't be overriden by the password in ``OPTIONS``.
41+
but *notice* that if a password is provided by the URL, it won't be overridden by the password in ``OPTIONS``.
4242

4343
.. code-block:: python
4444

0 commit comments

Comments
 (0)