diff options
author | samuela <skainsworth@gmail.com> | 2018-03-04 16:48:01 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-04 16:48:01 -0800 |
commit | 044977533b727ed68823b79965142077d63fe181 (patch) | |
tree | cb6f5d59ab6574bfdf3f26f4ee48839e68a8384e /git | |
parent | 8f76463221cf1c69046b27c07afde4f0442b75d5 (diff) | |
download | gitpython-044977533b727ed68823b79965142077d63fe181.tar.gz |
Fix doc typos
Diffstat (limited to 'git')
-rw-r--r-- | git/util.py | 4 |
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 |