summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathieu Dupuy <mathieu.dupuy@gitguardian.com>2023-12-19 23:11:35 +0100
committerMathieu Dupuy <mathieu.dupuy@gitguardian.com>2024-04-11 18:33:11 +0200
commit4089dd330c8d9e907f1b6fb95437d70eafa43cea (patch)
tree992713be665cbd4a497906e3b886265cdaa335a0
parente52fdaa71ea11fb78662763e82254d10f55deb89 (diff)
fix a mispelling in a docstring
-rw-r--r--iredis/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iredis/commands.py b/iredis/commands.py
index 3580cdb..481fc74 100644
--- a/iredis/commands.py
+++ b/iredis/commands.py
@@ -115,7 +115,7 @@ def split_command_args(command):
command = command.strip()
for command_name in all_commands:
- # for command that is paritaly input, like `command in`, we should
+ # for command that is partially input, like `command in`, we should
# match with `command info`, otherwise, `command in` will result in
# `command` with `args` is ('in') which is an invalid case.
normalized_input_command = " ".join(command.split()).upper()