summaryrefslogtreecommitdiff
path: root/git/refs/head.py
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-21 00:33:43 +0200
committerGitHub <noreply@github.com>2016-10-21 00:33:43 +0200
commitafcd64ebbb770908bd2a751279ff070dea5bb97c (patch)
tree0674f49f45996d533890e0f67498a6038c590168 /git/refs/head.py
parentaab7dc2c7771118064334ee475dff8a6bb176b57 (diff)
parent66c41eb3b2b4130c7b68802dd2078534d1f6bf7a (diff)
downloadgitpython-afcd64ebbb770908bd2a751279ff070dea5bb97c.tar.gz
Merge pull request #539 from bryant1410/typos
Fix some typos
Diffstat (limited to 'git/refs/head.py')
-rw-r--r--git/refs/head.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/git/refs/head.py b/git/refs/head.py
index a1d8ab46..9a9a8596 100644
--- a/git/refs/head.py
+++ b/git/refs/head.py
@@ -216,8 +216,7 @@ class Head(Reference):
else:
return self.repo.active_branch
- #{ Configruation
-
+ #{ Configuration
def _config_parser(self, read_only):
if read_only:
parser = self.repo.config_reader()
@@ -235,7 +234,7 @@ class Head(Reference):
def config_writer(self):
"""
- :return: A configuration writer instance with read-and write acccess
+ :return: A configuration writer instance with read-and write access
to options of this head"""
return self._config_parser(read_only=False)