diff options
| author | QuietMisdreavus <grey@quietmisdreavus.net> | 2018-07-13 15:45:21 -0500 |
|---|---|---|
| committer | QuietMisdreavus <grey@quietmisdreavus.net> | 2018-07-13 15:45:21 -0500 |
| commit | 8f1ebbc03c7add660350034b2c7e2cf77cba08c2 (patch) | |
| tree | 994bb9c15bab166ac0ecc0030c4aa97b9f603654 | |
| parent | bce32b532de61434841b7c2ce3085e1f63d6a7a1 (diff) | |
stabilize lint handling in rustdoc
| -rw-r--r-- | src/librustdoc/lib.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 3e26ed2b97c..7421325a7f3 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -309,19 +309,19 @@ pub fn opts() -> Vec<RustcOptGroup> { "disable-minification", "Disable minification applied on JS files") }), - unstable("warn", |o| { + stable("warn", |o| { o.optmulti("W", "warn", "Set lint warnings", "OPT") }), - unstable("allow", |o| { + stable("allow", |o| { o.optmulti("A", "allow", "Set lint allowed", "OPT") }), - unstable("deny", |o| { + stable("deny", |o| { o.optmulti("D", "deny", "Set lint denied", "OPT") }), - unstable("forbid", |o| { + stable("forbid", |o| { o.optmulti("F", "forbid", "Set lint forbidden", "OPT") }), - unstable("cap-lints", |o| { + stable("cap-lints", |o| { o.optmulti( "", "cap-lints", |
