Skip to content

Commit 901543f

Browse files
committed
Reformat comments
1 parent e7a01b7 commit 901543f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/libsyntax/parse/token.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -362,11 +362,11 @@ fn mk_fake_ident_interner() -> ident_interner {
362362
/**
363363
* All the valid words that have meaning in the Rust language.
364364
*
365-
* Rust keywords are either 'contextual', 'restricted', or 'strict, Contextual
366-
* keywords may be used as identifiers because their appearance in the grammar
367-
* is unambiguous. Restricted keywords may not appear in positions that might
368-
* otherwise contain _value identifiers_. Strict keywords may not appear as
369-
* identifiers.
365+
* Rust keywords are either 'contextual', 'restricted', or 'strict'.
366+
* Contextual keywords may be used as identifiers because their appearance in
367+
* the grammar is unambiguous. Restricted keywords may not appear in positions
368+
* that might otherwise contain _value identifiers_. Strict keywords may not
369+
* appear as identifiers.
370370
*/
371371
fn keyword_table() -> hashmap<~str, ()> {
372372
let keywords = str_hash();

0 commit comments

Comments
 (0)