From 5264e8c341f9105ad49403fa321c00e982b6be7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Antoine=20Gombeaud?= Date: Wed, 7 Aug 2019 16:08:24 +0200 Subject: [PATCH] Fix typo in documentation `mutli_options` -> `multi_options` --- git/repo/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/repo/base.py b/git/repo/base.py index f35870803..22c61c2e3 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -1011,7 +1011,7 @@ def clone_from(cls, url, to_path, progress=None, env=None, multi_options=None, * :param to_path: Path to which the repository should be cloned to :param progress: See 'git.remote.Remote.push'. :param env: Optional dictionary containing the desired environment variables. - :param mutli_options: See ``clone`` method + :param multi_options: See ``clone`` method :param kwargs: see the ``clone`` method :return: Repo instance pointing to the cloned directory""" git = Git(os.getcwd())