summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2020-12-25 06:39:37 +1100
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-12-25 05:12:26 +0800
commit1e4211b20e8e57fe7b105b36501b8fc9e818852f (patch)
tree08931ec62834d195e58640a0aa509ed7a49209ac /git
parent24f75e7bae3974746f29aaecf6de011af79a675d (diff)
downloadgitpython-1e4211b20e8e57fe7b105b36501b8fc9e818852f.tar.gz
docs: fix simple typo, repostory -> repository
There is a small typo in git/repo/base.py. Should read `repository` rather than `repostory`.
Diffstat (limited to 'git')
-rw-r--r--git/repo/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index a935cfa7..8f1ef0a6 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -466,7 +466,7 @@ class Repo(object):
One of the following values
system = system wide configuration file
global = user level configuration file
- repository = configuration file for this repostory only"""
+ repository = configuration file for this repository only"""
return GitConfigParser(self._get_config_path(config_level), read_only=False, repo=self)
def commit(self, rev=None):