Skip to content

Commit

Permalink
Remove mentions of “home project” in documentation and output
Browse files Browse the repository at this point in the history
The concept of “home project” was removed in JuliaLang#36434.
  • Loading branch information
Socob committed Jul 12, 2023
1 parent 4995d3f commit 66f9f9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/man/julia.1
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Print uncommon options not shown by `-h`

.TP
--project[=<dir>/@.]
Set <dir> as the home project/environment. The default @. option will search
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.

Expand Down
2 changes: 1 addition & 1 deletion doc/src/manual/command-line-interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -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[={<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.|
|`--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.|
|`-J`, `--sysimage <file>` |Start up with the given system image file|
|`-H`, `--home <dir>` |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`|
Expand Down
2 changes: 1 addition & 1 deletion src/jloptions.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static const char opts[] =
" --help-hidden Uncommon options not shown by `-h`\n\n"

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

0 comments on commit 66f9f9c

Please sign in to comment.