about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2016-01-30 09:25:25 -0800
committerAaron Turon <aturon@mozilla.com>2016-03-14 15:04:39 -0700
commit462c83e272e2ba268aaf11ef00e9d47c52011b90 (patch)
tree9aab5e97fb01a5b5d154428718a2686445eb8b3d /src/libsyntax
parent9734406a5f95393e8e888cf67b48861ea8a39de7 (diff)
downloadrust-462c83e272e2ba268aaf11ef00e9d47c52011b90.tar.gz
rust-462c83e272e2ba268aaf11ef00e9d47c52011b90.zip
Address basic nits from initial review
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/feature_gate.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index d50eb17c87b..a5f0fbbd094 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -250,6 +250,7 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Option<u32>, Status
     ("question_mark", "1.9.0", Some(31436), Active)
 
     // impl specialization (RFC 1210)
+    // TODO: update with issue number (once it exists), before landing
     ("specialization", "1.7.0", None, Active),
 ];
 // (changing above list without updating src/doc/reference.md makes @cmr sad)