From 0d9117a9223fa537248b8e6ef581e157349efb1a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 13 Dec 2019 08:14:45 +1100 Subject: [PATCH] Fix simple typo: referes -> refers Closes #212 --- src/cuisine.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cuisine.py b/src/cuisine.py index af6972a..6240eab 100644 --- a/src/cuisine.py +++ b/src/cuisine.py @@ -1405,7 +1405,7 @@ def python_package_upgrade_pip(package, pip=None): def python_package_install_pip(package=None,r=None,pip=None): ''' The "package" argument, defines the name of the package that will be installed. - The argument "r" referes to the requirements file that will be used by pip and + The argument "r" refers to the requirements file that will be used by pip and is equivalent to the "-r" parameter of pip. Either "package" or "r" needs to be provided The optional argument "E" is equivalent to the "-E" parameter of pip. E is the @@ -1422,7 +1422,7 @@ def python_package_install_pip(package=None,r=None,pip=None): def python_package_ensure_pip(package=None, r=None, pip=None): ''' The "package" argument, defines the name of the package that will be ensured. - The argument "r" referes to the requirements file that will be used by pip and + The argument "r" refers to the requirements file that will be used by pip and is equivalent to the "-r" parameter of pip. Either "package" or "r" needs to be provided ''' @@ -1435,7 +1435,7 @@ def python_package_ensure_pip(package=None, r=None, pip=None): def python_package_remove_pip(package, pip=None): ''' The "package" argument, defines the name of the package that will be ensured. - The argument "r" referes to the requirements file that will be used by pip and + The argument "r" refers to the requirements file that will be used by pip and is equivalent to the "-r" parameter of pip. Either "package" or "r" needs to be provided '''