Skip to content

Commit 22ac24a

Browse files
authored
Remove mentions of “home project” in documentation and output (#50527)
The concept of “home project” was removed in #36434.
2 parents ae08077 + 66f9f9c commit 22ac24a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/man/julia.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Print uncommon options not shown by `-h`
6767

6868
.TP
6969
--project[=<dir>/@.]
70-
Set <dir> as the home project/environment. The default @. option will search
70+
Set <dir> as the active project/environment. The default @. option will search
7171
through parent directories until a Project.toml or JuliaProject.toml file is
7272
found.
7373

doc/src/manual/command-line-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ The following is a complete list of command-line switches available when launchi
9595
|`-v`, `--version` |Display version information|
9696
|`-h`, `--help` |Print command-line options (this message).|
9797
|`--help-hidden` |Uncommon options not shown by `-h`|
98-
|`--project[={<dir>\|@.}]` |Set `<dir>` as the home project/environment. The default `@.` option will search through parent directories until a `Project.toml` or `JuliaProject.toml` file is found.|
98+
|`--project[={<dir>\|@.}]` |Set `<dir>` as the active project/environment. The default `@.` option will search through parent directories until a `Project.toml` or `JuliaProject.toml` file is found.|
9999
|`-J`, `--sysimage <file>` |Start up with the given system image file|
100100
|`-H`, `--home <dir>` |Set location of `julia` executable|
101101
|`--startup-file={yes*\|no}` |Load `JULIA_DEPOT_PATH/config/startup.jl`; if `JULIA_DEPOT_PATH` environment variable is unset, load `~/.julia/config/startup.jl`|

src/jloptions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ static const char opts[] =
102102
" --help-hidden Uncommon options not shown by `-h`\n\n"
103103

104104
// startup options
105-
" --project[={<dir>|@.}] Set <dir> as the home project/environment\n"
105+
" --project[={<dir>|@.}] Set <dir> as the active project/environment\n"
106106
" -J, --sysimage <file> Start up with the given system image file\n"
107107
" -H, --home <dir> Set location of `julia` executable\n"
108108
" --startup-file={yes*|no} Load `JULIA_DEPOT_PATH/config/startup.jl`; if `JULIA_DEPOT_PATH`\n"

0 commit comments

Comments
 (0)