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;
21
21
22
22
// The proc macro code for this is in `compiler/rustc_macros/src/symbols.rs`.
23
23
symbols ! {
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. `_`).
29
28
//
30
29
// If you modify this list, adjust any relevant `Symbol::{is,can_be}_*`
31
30
// predicates and `used_keywords`. Also consider adding new keywords to the
32
31
// `ui/parser/raw/raw-idents.rs` test.
33
32
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.
36
35
// Matching predicates: `is_special`/`is_reserved`
37
36
//
38
37
// tidy-alphabetical-start
You can’t perform that action at this time.
0 commit comments