about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2014-12-05 10:07:34 -0800
committerCorey Richardson <corey@octayn.net>2014-12-05 10:07:34 -0800
commit13befdff912250155cb5455ecce8291b162eae6b (patch)
tree2eda96ad014c69eaf4cd318f1ffad2a602868691 /src/libsyntax
parent3489fc4134bc61bdc75f04497c500700b9177da8 (diff)
parent861e11ceebf862f15917c4c36a0d2a43c88680d3 (diff)
downloadrust-13befdff912250155cb5455ecce8291b162eae6b.tar.gz
rust-13befdff912250155cb5455ecce8291b162eae6b.zip
rollup merge of #19492: steveklabnik/remove_outdated_comment
https://github.com/rust-lang/rust/pull/19472#issuecomment-65370278

/cc @alexcrichton
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 5ece63fd48d..11c65d531f6 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -32,9 +32,7 @@ use parse::token;
 
 use std::slice;
 
-/// This is a list of all known features since the beginning of time. This list
-/// can never shrink, it may only be expanded (in order to prevent old programs
-/// from failing to compile). The status of each feature may change, however.
+// if you change this list without updating src/doc/reference.md, @cmr will be sad
 static KNOWN_FEATURES: &'static [(&'static str, Status)] = &[
     ("globs", Active),
     ("macro_rules", Active),
@@ -73,8 +71,6 @@ static KNOWN_FEATURES: &'static [(&'static str, Status)] = &[
     ("if_let", Accepted),
     ("while_let", Accepted),
 
-    // if you change this list without updating src/doc/reference.md, cmr will be sad
-
     // A temporary feature gate used to enable parser extensions needed
     // to bootstrap fix for #5723.
     ("issue_5723_bootstrap", Accepted),