diff options
author | Santiago Castro <santi.1410@hotmail.com> | 2016-10-20 19:20:32 -0300 |
---|---|---|
committer | Santiago Castro <santi.1410@hotmail.com> | 2016-10-20 19:20:32 -0300 |
commit | 66c41eb3b2b4130c7b68802dd2078534d1f6bf7a (patch) | |
tree | 0674f49f45996d533890e0f67498a6038c590168 /git/objects/commit.py | |
parent | aab7dc2c7771118064334ee475dff8a6bb176b57 (diff) | |
download | gitpython-66c41eb3b2b4130c7b68802dd2078534d1f6bf7a.tar.gz |
Fix some typos
Diffstat (limited to 'git/objects/commit.py')
-rw-r--r-- | git/objects/commit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/objects/commit.py b/git/objects/commit.py index 1534c552..e537c0bb 100644 --- a/git/objects/commit.py +++ b/git/objects/commit.py @@ -163,7 +163,7 @@ class Commit(base.Object, Iterable, Diffable, Traversable, Serializable): """Count the number of commits reachable from this commit :param paths: - is an optinal path or a list of paths restricting the return value + is an optional path or a list of paths restricting the return value to commits actually containing the paths :param kwargs: @@ -192,7 +192,7 @@ class Commit(base.Object, Iterable, Diffable, Traversable, Serializable): :param repo: is the Repo :param rev: revision specifier, see git-rev-parse for viable options :param paths: - is an optinal path or list of paths, if set only Commits that include the path + is an optional path or list of paths, if set only Commits that include the path or paths will be considered :param kwargs: optional keyword arguments to git rev-list where |