diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2016-04-14 14:49:09 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2016-04-14 14:49:09 -0400 |
| commit | c353eae4ac4707441afe1aa5ec6c41bd7a63a0a8 (patch) | |
| tree | c023c52d92d50bd9251dccc0b8fe447578097a90 | |
| parent | d1f1f38c0e9e8311bae50608eeaeb44fa83c1ffe (diff) | |
| parent | 43a0f4119b8bdb6cc5a3c07ff201705186f84d82 (diff) | |
| download | rust-c353eae4ac4707441afe1aa5ec6c41bd7a63a0a8.tar.gz rust-c353eae4ac4707441afe1aa5ec6c41bd7a63a0a8.zip | |
Rollup merge of #32868 - kraai:remove-comma, r=GuillaumeGomez
Remove an extra command from the usage message
| -rw-r--r-- | src/librustc/session/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs index 574c927bd75..4ea6baca367 100644 --- a/src/librustc/session/config.rs +++ b/src/librustc/session/config.rs @@ -892,7 +892,7 @@ pub fn rustc_short_optgroups() -> Vec<RustcOptGroup> { opt::multi_s("L", "", "Add a directory to the library search path", "[KIND=]PATH"), opt::multi_s("l", "", "Link the generated crate(s) to the specified native - library NAME. The optional KIND can be one of, + library NAME. The optional KIND can be one of static, dylib, or framework. If omitted, dylib is assumed.", "[KIND=]NAME"), opt::multi_s("", "crate-type", "Comma separated list of types of crates |
