File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,17 @@ mod tests;
2121
2222// The proc macro code for this is in `compiler/rustc_macros/src/symbols.rs`.
2323symbols ! {
24- // This list includes things that are definitely keywords (e.g. `if`),
25- // a few things that are definitely not keywords (e.g. the empty symbol,
26- // `{{root}}`) and things where there is disagreement between people and/or
27- // documents (such as the Rust Reference) about whether it is a keyword
28- // (e.g. `_`).
24+ // This list includes things that are definitely keywords (e.g. `if`), a
25+ // few things that are definitely not keywords (e.g. `{{root}}`) and things
26+ // where there is disagreement between people and/or documents (such as the
27+ // Rust Reference) about whether it is a keyword (e.g. `_`).
2928 //
3029 // If you modify this list, adjust any relevant `Symbol::{is,can_be}_*`
3130 // predicates and `used_keywords`. Also consider adding new keywords to the
3231 // `ui/parser/raw/raw-idents.rs` test.
3332 Keywords {
34- // Special reserved identifiers used internally for elided lifetimes,
35- // unnamed method parameters, crate root module, error recovery etc.
33+ // Special reserved identifiers used internally for unnamed method
34+ // parameters, crate root module, etc.
3635 // Matching predicates: `is_special`/`is_reserved`
3736 //
3837 // tidy-alphabetical-start
You can’t perform that action at this time.
0 commit comments