summaryrefslogtreecommitdiff
path: root/git/cmd.py
diff options
context:
space:
mode:
authorJonas Trappenberg <jonas@trappenberg.ch>2015-01-20 21:47:07 -0800
committerJonas Trappenberg <jonas@trappenberg.ch>2015-01-21 21:33:51 -0800
commit1287f69b42fa7d6b9d65abfef80899b22edfef55 (patch)
tree4569f41fee3636ac43a172627d670786e46e9dc7 /git/cmd.py
parentd565a874f29701531ce1fc0779592838040d3edf (diff)
downloadgitpython-1287f69b42fa7d6b9d65abfef80899b22edfef55.tar.gz
Fix some typos
Diffstat (limited to 'git/cmd.py')
-rw-r--r--git/cmd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/cmd.py b/git/cmd.py
index 55ed74dd..ef347925 100644
--- a/git/cmd.py
+++ b/git/cmd.py
@@ -139,7 +139,7 @@ def handle_process_output(process, stdout_handler, stderr_handler, finalizer):
if hasattr(select, 'poll'):
# poll is preferred, as select is limited to file handles up to 1024 ... . This could otherwise be
- # an issue for us, as it matters how many handles or own process has
+ # an issue for us, as it matters how many handles our own process has
poll = select.poll()
READ_ONLY = select.POLLIN | select.POLLPRI | select.POLLHUP | select.POLLERR
CLOSED = select.POLLHUP | select.POLLERR
@@ -731,7 +731,7 @@ class Git(LazyMixin):
import warnings
msg = "WARNING: Automatically switched to use git.cmd as git executable"
msg += ", which reduces performance by ~70%."
- msg += "Its recommended to put git.exe into the PATH or to "
+ msg += "It is recommended to put git.exe into the PATH or to "
msg += "set the %s " % self._git_exec_env_var
msg += "environment variable to the executable's location"
warnings.warn(msg)