summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 7523ead5..9279bb0c 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -168,7 +168,7 @@ def handle_process_output(process: 'Git.AutoInterrupt' | Popen,
error_str = cast(str, error_str)
error_str = error_str.encode()
# We ignore typing on the next line because mypy does not like
- # the way we infered that stderr takes str of bytes
+ # the way we inferred that stderr takes str or bytes
stderr_handler(error_str) # type: ignore
if finalizer: