diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-02-02 07:11:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-02 07:11:08 +0100 |
| commit | c483b9f1bff855143bc257bfd089ee4b5b634bcf (patch) | |
| tree | a196d879a3ecae2815940a1118ee4f904b4a32d9 | |
| parent | b836b281a84d504af60b3034c7e2e4585ee57570 (diff) | |
| parent | e22729b46466a171b020f601e40e5e50283b1d8b (diff) | |
| download | rust-c483b9f1bff855143bc257bfd089ee4b5b634bcf.tar.gz rust-c483b9f1bff855143bc257bfd089ee4b5b634bcf.zip | |
Rollup merge of #93559 - danielframpton:link-args-typo, r=oli-obk
Add missing | between print options The help text for the newly stabilized print option is missing a | between stack-protector-strategies and link-args.
| -rw-r--r-- | compiler/rustc_session/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/config.rs b/compiler/rustc_session/src/config.rs index a756de4c0fc..d2d5b06ad67 100644 --- a/compiler/rustc_session/src/config.rs +++ b/compiler/rustc_session/src/config.rs @@ -1188,7 +1188,7 @@ pub fn rustc_short_optgroups() -> Vec<RustcOptGroup> { "Compiler information to print on stdout", "[crate-name|file-names|sysroot|target-libdir|cfg|target-list|\ target-cpus|target-features|relocation-models|code-models|\ - tls-models|target-spec-json|native-static-libs|stack-protector-strategies\ + tls-models|target-spec-json|native-static-libs|stack-protector-strategies|\ link-args]", ), opt::flagmulti_s("g", "", "Equivalent to -C debuginfo=2"), |
