Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix simple typo: referes -> refers #213

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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