Skip to content

Commit 89d086b

Browse files
committed
change color of warning to YELLOW
1 parent 790043b commit 89d086b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libsyntax/errors/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ impl Level {
656656
fn color(self) -> term::color::Color {
657657
match self {
658658
Bug | Fatal | PhaseFatal | Error => term::color::BRIGHT_RED,
659-
Warning => term::color::BRIGHT_MAGENTA,
659+
Warning => term::color::YELLOW,
660660
Note => term::color::BRIGHT_GREEN,
661661
Help => term::color::BRIGHT_CYAN,
662662
Cancelled => unreachable!(),

0 commit comments

Comments
 (0)