File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -126,12 +126,15 @@ impl<'a> Annotation<'a> {
126
126
/// Types of annotations.
127
127
#[ derive( Debug , Clone , Copy , PartialEq ) ]
128
128
pub enum Level {
129
- /// Error annotations are displayed using red color and "^" character .
129
+ /// Error annotations are displayed in red with "^" characters .
130
130
Error ,
131
- /// Warning annotations are displayed using blue color and "-" character .
131
+ /// Warning annotations are displayed in yellow with "-" characters .
132
132
Warning ,
133
+ /// Help annotations are displayed in blue with "-" characters and the prefix `info: `.
133
134
Info ,
135
+ /// Help annotations are displayed in green with "-" characters and the prefix `note: `.
134
136
Note ,
137
+ /// Help annotations are displayed in blue with "-" characters and the prefix `help: `.
135
138
Help ,
136
139
}
137
140
You can’t perform that action at this time.
0 commit comments