From 706f9892e923910cbdef83f0c793fab02d36d3ec Mon Sep 17 00:00:00 2001 From: Daniel Matz Date: Wed, 23 Sep 2020 12:28:18 -0500 Subject: [PATCH] Clarify activate command signatures The signatures in the help for the activate command were confusing. It seemed to imply that the `activate --shared` and `activate --temp` each took an optional path, when in fact `activate --shared` requires a path and `activate --temp` does not accept a path. This clarifies the command signatures for these two cases. --- src/REPLMode/command_declarations.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/REPLMode/command_declarations.jl b/src/REPLMode/command_declarations.jl index 9663237470..7b673e485f 100644 --- a/src/REPLMode/command_declarations.jl +++ b/src/REPLMode/command_declarations.jl @@ -249,7 +249,8 @@ PSA[:name => "activate", :description => "set the primary environment the package manager manipulates", :help => md""" activate - activate [--shared|--temp] [path] + activate [--shared] path + activate --temp Activate the environment at the given `path`, or the home project environment if no `path` is specified. The active environment is the environment that is modified by executing package commands.