From 66f9f9c9a2e1477177168f7c7d9db3456d57db48 Mon Sep 17 00:00:00 2001 From: Simon May Date: Wed, 12 Jul 2023 15:36:24 -0400 Subject: [PATCH] =?UTF-8?q?Remove=20mentions=20of=20=E2=80=9Chome=20projec?= =?UTF-8?q?t=E2=80=9D=20in=20documentation=20and=20output?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The concept of “home project” was removed in #36434. --- doc/man/julia.1 | 2 +- doc/src/manual/command-line-interface.md | 2 +- src/jloptions.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man/julia.1 b/doc/man/julia.1 index fa9f641b1e76f..79a0530c2ecd1 100644 --- a/doc/man/julia.1 +++ b/doc/man/julia.1 @@ -67,7 +67,7 @@ Print uncommon options not shown by `-h` .TP --project[=/@.] -Set as the home project/environment. The default @. option will search +Set as the active project/environment. The default @. option will search through parent directories until a Project.toml or JuliaProject.toml file is found. diff --git a/doc/src/manual/command-line-interface.md b/doc/src/manual/command-line-interface.md index e1651c61a3ec3..01e2863f56e64 100644 --- a/doc/src/manual/command-line-interface.md +++ b/doc/src/manual/command-line-interface.md @@ -95,7 +95,7 @@ The following is a complete list of command-line switches available when launchi |`-v`, `--version` |Display version information| |`-h`, `--help` |Print command-line options (this message).| |`--help-hidden` |Uncommon options not shown by `-h`| -|`--project[={\|@.}]` |Set `` as the home project/environment. The default `@.` option will search through parent directories until a `Project.toml` or `JuliaProject.toml` file is found.| +|`--project[={\|@.}]` |Set `` as the active project/environment. The default `@.` option will search through parent directories until a `Project.toml` or `JuliaProject.toml` file is found.| |`-J`, `--sysimage ` |Start up with the given system image file| |`-H`, `--home ` |Set location of `julia` executable| |`--startup-file={yes*\|no}` |Load `JULIA_DEPOT_PATH/config/startup.jl`; if `JULIA_DEPOT_PATH` environment variable is unset, load `~/.julia/config/startup.jl`| diff --git a/src/jloptions.c b/src/jloptions.c index e81c34d37ef47..b520305a4bdfe 100644 --- a/src/jloptions.c +++ b/src/jloptions.c @@ -102,7 +102,7 @@ static const char opts[] = " --help-hidden Uncommon options not shown by `-h`\n\n" // startup options - " --project[={|@.}] Set as the home project/environment\n" + " --project[={|@.}] Set as the active project/environment\n" " -J, --sysimage Start up with the given system image file\n" " -H, --home Set location of `julia` executable\n" " --startup-file={yes*|no} Load `JULIA_DEPOT_PATH/config/startup.jl`; if `JULIA_DEPOT_PATH`\n"