Skip to content

Commit

Permalink
Stabilize --color and --error-format options in rustdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Aug 2, 2018
1 parent 75af9df commit dda85ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustdoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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",
Expand Down

0 comments on commit dda85ab

Please sign in to comment.