File tree 1 file changed +6
-5
lines changed
compiler/rustc_lint_defs/src
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -3135,7 +3135,7 @@ declare_lint! {
3135
3135
/// ### Example
3136
3136
///
3137
3137
/// ```text
3138
- /// rustc --check-cfg 'names ()'
3138
+ /// rustc --check-cfg 'cfg ()'
3139
3139
/// ```
3140
3140
///
3141
3141
/// ```rust,ignore (needs command line option)
@@ -3146,7 +3146,7 @@ declare_lint! {
3146
3146
/// This will produce:
3147
3147
///
3148
3148
/// ```text
3149
- /// warning: unknown condition name used
3149
+ /// warning: unexpected `cfg` condition name: `widnows`
3150
3150
/// --> lint_example.rs:1:7
3151
3151
/// |
3152
3152
/// 1 | #[cfg(widnows)]
@@ -3157,9 +3157,10 @@ declare_lint! {
3157
3157
///
3158
3158
/// ### Explanation
3159
3159
///
3160
- /// This lint is only active when a `--check-cfg='names(...)'` option has been passed
3161
- /// to the compiler and triggers whenever an unknown condition name or value is used.
3162
- /// The known condition include names or values passed in `--check-cfg`, `--cfg`, and some
3160
+ /// This lint is only active when `--check-cfg` arguments are being passed
3161
+ /// to the compiler and triggers whenever an unexpected condition name or value is used.
3162
+ ///
3163
+ /// The known condition include names or values passed in `--check-cfg`, and some
3163
3164
/// well-knows names and values built into the compiler.
3164
3165
pub UNEXPECTED_CFGS ,
3165
3166
Warn ,
You can’t perform that action at this time.
0 commit comments