diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2021-11-24 15:49:49 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 15:49:49 +0000 |
| commit | 84e03421d38b7fe1f9452d1d75951d288a1e1779 (patch) | |
| tree | 24e743182d1f379c78154041cbe916d3154f73a0 /src/main.cpp | |
| parent | 5db505c42f83d5be628a3e56d6cd471a9e790428 (diff) | |
| parent | 0a87ffe0e601d1092034a39ac6365e1a81e3bba1 (diff) | |
Merge pull request #1312 from DYSEQTA/master
Improve compiler help output with regard to command specific help.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 5371393d1..99a55b2b6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -545,8 +545,8 @@ void usage(String argv0) { print_usage_line(1, "version print version"); print_usage_line(1, "report print information useful to reporting a bug"); print_usage_line(0, ""); - print_usage_line(0, "For more information of flags, apply the flag to see what is possible"); - print_usage_line(1, "-help"); + print_usage_line(0, "For further details on a command, use -help after the command name"); + print_usage_line(1, "e.g. odin build -help"); } |