summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
authorsamuela <skainsworth@gmail.com>2018-03-04 16:48:01 -0800
committerGitHub <noreply@github.com>2018-03-04 16:48:01 -0800
commit044977533b727ed68823b79965142077d63fe181 (patch)
treecb6f5d59ab6574bfdf3f26f4ee48839e68a8384e /git
parent8f76463221cf1c69046b27c07afde4f0442b75d5 (diff)
downloadgitpython-044977533b727ed68823b79965142077d63fe181.tar.gz
Fix doc typos
Diffstat (limited to 'git')
-rw-r--r--git/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/util.py b/git/util.py
index 18c28fd1..52029fed 100644
--- a/git/util.py
+++ b/git/util.py
@@ -802,11 +802,11 @@ class BlockingLockFile(LockFile):
def __init__(self, file_path, check_interval_s=0.3, max_block_time_s=MAXSIZE):
"""Configure the instance
- :parm check_interval_s:
+ :param check_interval_s:
Period of time to sleep until the lock is checked the next time.
By default, it waits a nearly unlimited time
- :parm max_block_time_s: Maximum amount of seconds we may lock"""
+ :param max_block_time_s: Maximum amount of seconds we may lock"""
super(BlockingLockFile, self).__init__(file_path)
self._check_interval = check_interval_s
self._max_block_time = max_block_time_s