Skip to content

Commit 69d7884

Browse files
committed
Fix tidy warning
Prefer FIXME to TODO
1 parent 773a5f5 commit 69d7884

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/librustc_back/target/fuchsia_base.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub fn opts() -> TargetOptions {
2525
// resolutions the linker does). This option only applies to all
2626
// following libraries so we're sure to pass it as one of the first
2727
// arguments.
28-
// TODO: doesn't seem to be supported by clang toolchain
28+
// FIXME: figure out whether these linker args are desirable
2929
//"-Wl,--as-needed".to_string(),
3030

3131
// Always enable NX protection when it is available

src/libstd/sys/unix/thread.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ impl Thread {
137137
}
138138
#[cfg(target_os = "fuchsia")]
139139
pub fn set_name(_name: &CStr) {
140-
// TODO: determine whether Fuchsia has a way to set a thread name.
140+
// FIXME: determine whether Fuchsia has a way to set a thread name.
141141
}
142142

143143
pub fn sleep(dur: Duration) {

0 commit comments

Comments
 (0)