From c394a6c238a2e981f9092e142029ec5b465c1dcd Mon Sep 17 00:00:00 2001 From: Aidan Cully Date: Fri, 5 Dec 2014 18:39:58 -0500 Subject: [PATCH] prefer "FIXME" to "TODO". --- src/libstd/sys/common/thread_local.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/sys/common/thread_local.rs b/src/libstd/sys/common/thread_local.rs index b33e74248d2..3eb0e3f46cb 100644 --- a/src/libstd/sys/common/thread_local.rs +++ b/src/libstd/sys/common/thread_local.rs @@ -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 -- 2.44.0