Skip to content

Commit 4c3fede

Browse files
committed
libcore: Fix tidy error
1 parent 9fe40e8 commit 4c3fede

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/os.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -751,12 +751,12 @@ fn real_args() -> ~[~str] {
751751

752752
#[cfg(target_os = "linux")]
753753
fn real_args() -> ~[~str] {
754-
fail // TODO
754+
fail // Needs implementing.
755755
}
756756

757757
#[cfg(windows)]
758758
fn real_args() -> ~[~str] {
759-
fail // TODO
759+
fail // Needs implementing.
760760
}
761761

762762
struct OverriddenArgs {

0 commit comments

Comments
 (0)