Skip to content

Commit c394a6c

Browse files
committed
prefer "FIXME" to "TODO".
1 parent 7bf7bd6 commit c394a6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/common/thread_local.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ impl StaticKey {
193193
// prove that it has not yet been set. As such, we'll continue using a
194194
// value of 0, but with some gyrations to make sure we have a non-0
195195
// value returned from the creation routine.
196-
// TODO: this is clearly a hack, and should be cleaned up.
196+
// FIXME: this is clearly a hack, and should be cleaned up.
197197
let key1 = imp::create(self.dtor);
198198
let key = if key1 != 0 {
199199
key1

0 commit comments

Comments
 (0)