Skip to content

Commit daaa231

Browse files
committed
Fix tidy checks
1 parent 7e7775c commit daaa231

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/sys/redox/path.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ pub fn is_verbatim_sep(b: u8) -> bool {
2424
pub fn parse_prefix(path: &OsStr) -> Option<Prefix> {
2525
if let Some(path_str) = path.to_str() {
2626
if let Some(_i) = path_str.find(':') {
27-
//TODO: Redox specific prefix Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
27+
// FIXME: Redox specific prefix
28+
// Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
2829
None
2930
} else {
3031
None

0 commit comments

Comments
 (0)