diff options
author | Tim Gates <tim.gates@iress.com> | 2020-12-25 06:39:37 +1100 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-12-25 05:12:26 +0800 |
commit | 1e4211b20e8e57fe7b105b36501b8fc9e818852f (patch) | |
tree | 08931ec62834d195e58640a0aa509ed7a49209ac | |
parent | 24f75e7bae3974746f29aaecf6de011af79a675d (diff) | |
download | gitpython-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`.
-rw-r--r-- | git/repo/base.py | 2 |
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): |