about summary refs log tree commit diff
path: root/src/libstd/send_str.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/send_str.rs')
-rw-r--r--src/libstd/send_str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/send_str.rs b/src/libstd/send_str.rs
index c8143442d6e..b6c9acd2672 100644
--- a/src/libstd/send_str.rs
+++ b/src/libstd/send_str.rs
@@ -119,7 +119,7 @@ impl Str for SendStr {
     fn as_slice<'r>(&'r self) -> &'r str {
         match *self {
             SendStrOwned(ref s) => s.as_slice(),
-            // XXX: Borrowchecker doesn't recognize lifetime as static unless prompted
+            // FIXME: Borrowchecker doesn't recognize lifetime as static unless prompted
             // SendStrStatic(s) => s.as_slice()
             SendStrStatic(s)    => {let tmp: &'static str = s; tmp}
         }