summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-06-17 11:11:20 +0200
committerSebastian Thiel <byronimo@gmail.com>2014-06-17 11:11:20 +0200
commit4a0ad305883201b6b3e68494fc70089180389f6e (patch)
tree2dc92019c1df2efe577136e4d9c4b3e3c2e88a57 /git/repo/base.py
parent4bc91d7495d7eb70a70c1f025137718f41486cd2 (diff)
parenteb53329253f8ec1d0eff83037ce70260b6d8fcce (diff)
downloadgitpython-4a0ad305883201b6b3e68494fc70089180389f6e.tar.gz
Merge pull request #165 from marios-zindilis/0.3
Changed link to PyPI; fixed minor typos
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index 8191b305..71492fe8 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -56,13 +56,13 @@ class Repo(object):
The following attributes are worth using:
- 'working_dir' is the working directory of the git command, wich is the working tree
+ 'working_dir' is the working directory of the git command, which is the working tree
directory if available or the .git directory in case of bare repositories
'working_tree_dir' is the working tree directory, but will raise AssertionError
if we are a bare repository.
- 'git_dir' is the .git repository directoy, which is always set."""
+ 'git_dir' is the .git repository directory, which is always set."""
DAEMON_EXPORT_FILE = 'git-daemon-export-ok'
__slots__ = ( "working_dir", "_working_tree_dir", "git_dir", "_bare", "git", "odb" )