about summary refs log tree commit diff
path: root/src/librustsyntax/parse/token.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustsyntax/parse/token.rs')
-rw-r--r--src/librustsyntax/parse/token.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustsyntax/parse/token.rs b/src/librustsyntax/parse/token.rs
index 3f9ce9d91b6..c962d4ec16c 100644
--- a/src/librustsyntax/parse/token.rs
+++ b/src/librustsyntax/parse/token.rs
@@ -124,7 +124,7 @@ fn to_str(in: interner<str>, t: token) -> str {
 
       /* Literals */
       LIT_INT(c, ast::ty_char) {
-        // FIXME: escape.
+        // FIXME: escape. (#2306)
         let mut tmp = "'";
         str::push_char(tmp, c as char);
         str::push_char(tmp, '\'');
@@ -140,7 +140,7 @@ fn to_str(in: interner<str>, t: token) -> str {
         ret interner::get::<str>(in, s) +
             ast_util::float_ty_to_str(t);
       }
-      LIT_STR(s) { // FIXME: escape.
+      LIT_STR(s) { // FIXME: escape. (#2306)
         ret "\"" + interner::get::<str>(in, s) + "\"";
       }