We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75af9df commit dda85abCopy full SHA for dda85ab
src/librustdoc/lib.rs
@@ -289,7 +289,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
289
"edition to use when compiling rust code (default: 2015)",
290
"EDITION")
291
}),
292
- unstable("color", |o| {
+ stable("color", |o| {
293
o.optopt("",
294
"color",
295
"Configure coloring of output:
@@ -298,7 +298,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
298
never = never colorize output",
299
"auto|always|never")
300
301
- unstable("error-format", |o| {
+ stable("error-format", |o| {
302
303
"error-format",
304
"How errors and other messages are produced",
0 commit comments