about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorRaph Levien <raph@google.com>2016-10-20 18:09:52 -0700
committerRaph Levien <raph@google.com>2016-10-22 07:08:07 -0700
commit69d7884a1d464b73a95c95e04e8d8d159cf61937 (patch)
treedd04f44fa18f4a78904a5c97be592b1d03a5f326 /src/libstd/sys
parent773a5f59e936230e243fee275655c7266ed6d4f2 (diff)
downloadrust-69d7884a1d464b73a95c95e04e8d8d159cf61937.tar.gz
rust-69d7884a1d464b73a95c95e04e8d8d159cf61937.zip
Fix tidy warning
Prefer FIXME to TODO
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/unix/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/thread.rs b/src/libstd/sys/unix/thread.rs
index df98d2e0169..1642baa34d6 100644
--- a/src/libstd/sys/unix/thread.rs
+++ b/src/libstd/sys/unix/thread.rs
@@ -137,7 +137,7 @@ impl Thread {
     }
     #[cfg(target_os = "fuchsia")]
     pub fn set_name(_name: &CStr) {
-        // TODO: determine whether Fuchsia has a way to set a thread name.
+        // FIXME: determine whether Fuchsia has a way to set a thread name.
     }
 
     pub fn sleep(dur: Duration) {