mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Merge pull request #37 from EverydayPineapple/master
Minor spelling fix
This commit is contained in:
+2
-2
@@ -79,8 +79,8 @@ Other Commands
|
||||
check Checks PEP 508 markers provided in Pipfile.
|
||||
install Installs a provided package and adds it to...
|
||||
lock Generates Pipfile.lock.
|
||||
run Spans a command installed into the...
|
||||
shell Spans a shell within the virtualenv.
|
||||
run Spawns a command installed into the...
|
||||
shell Spanws a shell within the virtualenv.
|
||||
uninstall Un-installs a provided package and removes it...
|
||||
update Updates pip to latest version, uninstalls all...
|
||||
|
||||
|
||||
+2
-2
@@ -408,7 +408,7 @@ def uninstall(package_name=False, more_packages=False, system=False):
|
||||
def lock(dev=False):
|
||||
do_lock(dev=dev)
|
||||
|
||||
@click.command(help="Spans a shell within the virtualenv.")
|
||||
@click.command(help="Spawns a shell within the virtualenv.")
|
||||
def shell():
|
||||
# Ensure that virtualenv is available.
|
||||
ensure_project()
|
||||
@@ -429,7 +429,7 @@ def shell():
|
||||
c.interact()
|
||||
|
||||
|
||||
@click.command(help="Spans a command installed into the virtualenv.", context_settings=dict(
|
||||
@click.command(help="Spawns a command installed into the virtualenv.", context_settings=dict(
|
||||
ignore_unknown_options=True,
|
||||
allow_extra_args=True
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user