summaryrefslogtreecommitdiff
path: root/git/remote.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/remote.py
parentd565a874f29701531ce1fc0779592838040d3edf (diff)
downloadgitpython-1287f69b42fa7d6b9d65abfef80899b22edfef55.tar.gz
Fix some typos
Diffstat (limited to 'git/remote.py')
-rw-r--r--git/remote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/remote.py b/git/remote.py
index fcec5228..c176b43b 100644
--- a/git/remote.py
+++ b/git/remote.py
@@ -354,7 +354,7 @@ class Remote(LazyMixin, Iterable):
# that it has the config_writer property, but instead calls __getattr__
# which will not yield the expected results. 'pinging' the members
# with a dir call creates the config_writer property that we require
- # ... bugs like these make me wonder wheter python really wants to be used
+ # ... bugs like these make me wonder whether python really wants to be used
# for production. It doesn't happen on linux though.
dir(self)
# END windows special handling