diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-14 19:19:39 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-06-14 19:32:41 -0700 |
| commit | a214e3abd23fa68e358ff4647aab6c34f91f3d9b (patch) | |
| tree | 12052faba8b04d6e51f002733b6fdccc56a1eaf0 | |
| parent | d0e1591a6a6002f9a0bf464c60fcc9ed24d14612 (diff) | |
| download | rust-a214e3abd23fa68e358ff4647aab6c34f91f3d9b.tar.gz rust-a214e3abd23fa68e358ff4647aab6c34f91f3d9b.zip | |
Comments only: annotate FIXME in core::str
| -rw-r--r-- | src/libcore/str.rs | 2 |
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; } |
