diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-11-26 09:44:33 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-11-26 16:49:36 -0800 |
| commit | f40fa8304fea63e04364645260112ddaf91ce70f (patch) | |
| tree | d1809a9e7677512378a32cb89bed64602a789296 /src/libsyntax/parse | |
| parent | 34b98b306ad23ab895f701de1d009ff026a1d2b1 (diff) | |
| parent | f38e4e6d97bf1691858d007afd36b1f356de4774 (diff) | |
| download | rust-f40fa8304fea63e04364645260112ddaf91ce70f.tar.gz rust-f40fa8304fea63e04364645260112ddaf91ce70f.zip | |
rollup merge of #19288: steveklabnik/doc_style_cleanup
This is considered good convention. This is about half of them in total, I just don't want an impossible to land patch. :smile:
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index 3a3407aedba..583ace977fe 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -421,13 +421,11 @@ macro_rules! declare_special_idents_and_keywords {( )* } - /** - * All the valid words that have meaning in the Rust language. - * - * Rust keywords are either 'strict' or 'reserved'. Strict keywords may not - * appear as identifiers at all. Reserved keywords are not used anywhere in - * the language and may not appear as identifiers. - */ + /// All the valid words that have meaning in the Rust language. + /// + /// Rust keywords are either 'strict' or 'reserved'. Strict keywords may not + /// appear as identifiers at all. Reserved keywords are not used anywhere in + /// the language and may not appear as identifiers. pub mod keywords { pub use self::Keyword::*; use ast; |
