about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-06-14 19:19:39 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-06-14 19:32:41 -0700
commita214e3abd23fa68e358ff4647aab6c34f91f3d9b (patch)
tree12052faba8b04d6e51f002733b6fdccc56a1eaf0
parentd0e1591a6a6002f9a0bf464c60fcc9ed24d14612 (diff)
downloadrust-a214e3abd23fa68e358ff4647aab6c34f91f3d9b.tar.gz
rust-a214e3abd23fa68e358ff4647aab6c34f91f3d9b.zip
Comments only: annotate FIXME in core::str
-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; }