]> git.lizzy.rs Git - rust.git/commitdiff
prefer "FIXME" to "TODO".
authorAidan Cully <github@aidan.users.panix.com>
Fri, 5 Dec 2014 23:39:58 +0000 (18:39 -0500)
committerAidan Cully <github@aidan.users.panix.com>
Fri, 5 Dec 2014 23:39:58 +0000 (18:39 -0500)
src/libstd/sys/common/thread_local.rs

index b33e74248d2756ea411c791cd0d1d572c9cfd527..3eb0e3f46cb90e81cdb229ecb0251e18ad5d291b 100644 (file)
@@ -193,7 +193,7 @@ unsafe fn lazy_init(&self) -> uint {
         // prove that it has not yet been set. As such, we'll continue using a
         // value of 0, but with some gyrations to make sure we have a non-0
         // value returned from the creation routine.
-        // TODO: this is clearly a hack, and should be cleaned up.
+        // FIXME: this is clearly a hack, and should be cleaned up.
         let key1 = imp::create(self.dtor);
         let key = if key1 != 0 {
             key1