diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2018-03-05 17:48:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-05 17:48:05 +0100 |
commit | 190c04569bd2a29597065222cdcc322ec4f2b374 (patch) | |
tree | c83a4aa4bac994a289710ede8922aeefb6a65ea0 /git/util.py | |
parent | 8f76463221cf1c69046b27c07afde4f0442b75d5 (diff) | |
parent | b9db530e428f798cdf5f977e9b2dbad594296f05 (diff) | |
download | gitpython-190c04569bd2a29597065222cdcc322ec4f2b374.tar.gz |
Merge pull request #733 from samuela/patch-1
Fix doc typos
Diffstat (limited to 'git/util.py')
-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 |