diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-11-23 23:22:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-23 23:22:36 +0100 |
| commit | 8ad3b5ccca7d2006997c1252bf4db35593143459 (patch) | |
| tree | 8405df5aa157e368aee6764cbf8f0b4bc08bf7f3 /src/librustdoc | |
| parent | 62a7839b45dd0116378be272a636f84843b5dbb8 (diff) | |
| parent | 4fcb3384adaa847a824ced961a225729ddb71f2d (diff) | |
| download | rust-8ad3b5ccca7d2006997c1252bf4db35593143459.tar.gz rust-8ad3b5ccca7d2006997c1252bf4db35593143459.zip | |
Rollup merge of #66655 - ollie27:rustdoc_extern-private_unstable, r=GuillaumeGomez
rustdoc: Mark `--extern-private` as unstable It's not even stable in rustc so it shouldn't be stable in rustdoc. r? @kinnison
Diffstat (limited to 'src/librustdoc')
| -rw-r--r-- | src/librustdoc/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 6ed2d4b8477..69d9748bb88 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -144,7 +144,7 @@ fn opts() -> Vec<RustcOptGroup> { stable("extern", |o| { o.optmulti("", "extern", "pass an --extern to rustc", "NAME[=PATH]") }), - stable("extern-private", |o| { + unstable("extern-private", |o| { o.optmulti("", "extern-private", "pass an --extern to rustc (compatibility only)", "NAME=PATH") }), |
