Stabilize --color and --error-format options in rustdoc
This commit is contained in:
parent
75af9df71b
commit
dda85abf09
1 changed files with 2 additions and 2 deletions
|
@ -289,7 +289,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
|
||||||
"edition to use when compiling rust code (default: 2015)",
|
"edition to use when compiling rust code (default: 2015)",
|
||||||
"EDITION")
|
"EDITION")
|
||||||
}),
|
}),
|
||||||
unstable("color", |o| {
|
stable("color", |o| {
|
||||||
o.optopt("",
|
o.optopt("",
|
||||||
"color",
|
"color",
|
||||||
"Configure coloring of output:
|
"Configure coloring of output:
|
||||||
|
@ -298,7 +298,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
|
||||||
never = never colorize output",
|
never = never colorize output",
|
||||||
"auto|always|never")
|
"auto|always|never")
|
||||||
}),
|
}),
|
||||||
unstable("error-format", |o| {
|
stable("error-format", |o| {
|
||||||
o.optopt("",
|
o.optopt("",
|
||||||
"error-format",
|
"error-format",
|
||||||
"How errors and other messages are produced",
|
"How errors and other messages are produced",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue