about summary refs log tree commit diff
path: root/src/libstd/rt/rtio.rs
diff options
context:
space:
mode:
authorSalem Talha <salem.a.talha@gmail.com>2014-01-26 03:43:42 -0500
committerSalem Talha <salem.a.talha@gmail.com>2014-01-26 14:42:53 -0500
commitcc61fc09945aeec6fc71a07e91b8610fa71f6425 (patch)
tree28b2a4a2742d0f8fa29c19bca7b6f35f441a7a2a /src/libstd/rt/rtio.rs
parent838b5a4cc072057f31453cdd1b50345f92e1a772 (diff)
downloadrust-cc61fc09945aeec6fc71a07e91b8610fa71f6425.tar.gz
rust-cc61fc09945aeec6fc71a07e91b8610fa71f6425.zip
Removed all instances of XXX in preparation for relaxing of FIXME rule
Diffstat (limited to 'src/libstd/rt/rtio.rs')
-rw-r--r--src/libstd/rt/rtio.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/rt/rtio.rs b/src/libstd/rt/rtio.rs
index 6b3d50a76ac..455a84b4ce3 100644
--- a/src/libstd/rt/rtio.rs
+++ b/src/libstd/rt/rtio.rs
@@ -86,7 +86,7 @@ pub struct LocalIo<'a> {
 #[unsafe_destructor]
 impl<'a> Drop for LocalIo<'a> {
     fn drop(&mut self) {
-        // XXX(pcwalton): Do nothing here for now, but eventually we may want
+        // FIXME(pcwalton): Do nothing here for now, but eventually we may want
         // something. For now this serves to make `LocalIo` noncopyable.
     }
 }
@@ -143,7 +143,7 @@ impl<'a> LocalIo<'a> {
     /// Returns the underlying I/O factory as a trait reference.
     #[inline]
     pub fn get<'a>(&'a mut self) -> &'a mut IoFactory {
-        // XXX(pcwalton): I think this is actually sound? Could borrow check
+        // FIXME(pcwalton): I think this is actually sound? Could borrow check
         // allow this safely?
         unsafe {
             cast::transmute_copy(&self.factory)