Skip to content

Commit a214e3a

Browse files
committed
Comments only: annotate FIXME in core::str
1 parent d0e1591 commit a214e3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/str.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ Section: Comparing strings
594594
#[doc = "Bytewise string equality"]
595595
pure fn eq(&&a: str, &&b: str) -> bool {
596596
// FIXME: This should just be "a == b" but that calls into the shape code
597-
// :(
597+
// :( (#2627)
598598
let a_len = a.len();
599599
let b_len = b.len();
600600
if a_len != b_len { ret false; }

0 commit comments

Comments
 (0)