about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-01-06 18:31:58 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-01-06 18:31:58 -0500
commitd91518b9c4d03c763274902546ee0db48f0cd911 (patch)
tree038a63b3673098a4b41af07e022617d6162102b7 /src/libsyntax/parse
parentfcb1ccf8c0fba7c4c455b4567336036595e6ae44 (diff)
parent4ea84fc1844625eb8049d081620aac53009bce4b (diff)
downloadrust-d91518b9c4d03c763274902546ee0db48f0cd911.tar.gz
rust-d91518b9c4d03c763274902546ee0db48f0cd911.zip
Rollup merge of #30729 - huonw:delete-bad-comment, r=sanxiyn
The fundamental problem of duplication was fixed in https://github.com/rust-lang/rust/pull/10891, but the comment was preserved. Closes https://github.com/rust-lang/rust/issues/9762.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/token.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs
index b942954c187..242626154fc 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -495,9 +495,6 @@ macro_rules! declare_special_idents_and_keywords {(
     }
 
     fn mk_fresh_ident_interner() -> IdentInterner {
-        // The indices here must correspond to the numbers in
-        // special_idents, in Keyword to_name(), and in static
-        // constants below.
         let mut init_vec = Vec::new();
         $(init_vec.push($si_str);)*
         $(init_vec.push($sk_str);)*