about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libcore/str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/str.rs b/src/libcore/str.rs
index cf81dcd7157..8f68ff8d4da 100644
--- a/src/libcore/str.rs
+++ b/src/libcore/str.rs
@@ -594,7 +594,7 @@ Section: Comparing strings
 #[doc = "Bytewise string equality"]
 pure fn eq(&&a: str, &&b: str) -> bool {
     // FIXME: This should just be "a == b" but that calls into the shape code
-    // :(
+    // :( (#2627)
     let a_len = a.len();
     let b_len = b.len();
     if a_len != b_len { ret false; }