From eb76e7bb8f85ed406bc452a479fb9c23142ad811 Mon Sep 17 00:00:00 2001 From: Ryan McClarnon Date: Mon, 23 Jan 2017 11:12:00 +0000 Subject: [PATCH] Minor spelling fix --- pipenv/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 7985d5b9..14b2912a 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -406,7 +406,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() @@ -427,7 +427,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 ))