Skip to content

Commit dda85ab

Browse files
Stabilize --color and --error-format options in rustdoc
1 parent 75af9df commit dda85ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustdoc/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
289289
"edition to use when compiling rust code (default: 2015)",
290290
"EDITION")
291291
}),
292-
unstable("color", |o| {
292+
stable("color", |o| {
293293
o.optopt("",
294294
"color",
295295
"Configure coloring of output:
@@ -298,7 +298,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
298298
never = never colorize output",
299299
"auto|always|never")
300300
}),
301-
unstable("error-format", |o| {
301+
stable("error-format", |o| {
302302
o.optopt("",
303303
"error-format",
304304
"How errors and other messages are produced",

0 commit comments

Comments
 (0)