Skip to content

Commit

Permalink
Fix simple typo: referes -> refers
Browse files Browse the repository at this point in the history
  • Loading branch information
timgates42 committed Dec 12, 2019
1 parent f6f7026 commit 0d9117a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cuisine.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
'''
Expand All @@ -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
'''
Expand Down

0 comments on commit 0d9117a

Please sign in to comment.