1
Fork 0

Stabilize --color and --error-format options in rustdoc

This commit is contained in:
Guillaume Gomez 2018-08-02 22:54:09 +02:00
parent 75af9df71b
commit dda85abf09

View file

@ -289,7 +289,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
"edition to use when compiling rust code (default: 2015)",
"EDITION")
}),
unstable("color", |o| {
stable("color", |o| {
o.optopt("",
"color",
"Configure coloring of output:
@ -298,7 +298,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
never = never colorize output",
"auto|always|never")
}),
unstable("error-format", |o| {
stable("error-format", |o| {
o.optopt("",
"error-format",
"How errors and other messages are produced",