Skip to content

Commit 7a23b5d

Browse files
authored
Rollup merge of rust-lang#53003 - GuillaumeGomez:stabilize-rustdoc-options, r=QuietMisdreavus
Stabilize --color and --error-format options in rustdoc Fixes rust-lang#52980 cc @kennytm r? @QuietMisdreavus
2 parents d028b3e + dda85ab commit 7a23b5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustdoc/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ fn opts() -> Vec<RustcOptGroup> {
290290
"edition to use when compiling rust code (default: 2015)",
291291
"EDITION")
292292
}),
293-
unstable("color", |o| {
293+
stable("color", |o| {
294294
o.optopt("",
295295
"color",
296296
"Configure coloring of output:
@@ -299,7 +299,7 @@ fn opts() -> Vec<RustcOptGroup> {
299299
never = never colorize output",
300300
"auto|always|never")
301301
}),
302-
unstable("error-format", |o| {
302+
stable("error-format", |o| {
303303
o.optopt("",
304304
"error-format",
305305
"How errors and other messages are produced",

0 commit comments

Comments
 (0)