]> git.lizzy.rs Git - rust.git/commitdiff
Fix tidy checks
authorJeremy Soller <jackpot51@gmail.com>
Mon, 12 Dec 2016 22:57:19 +0000 (15:57 -0700)
committerJeremy Soller <jackpot51@gmail.com>
Mon, 12 Dec 2016 22:57:19 +0000 (15:57 -0700)
src/libstd/sys/redox/path.rs

index dabec1acacd4fb0c26f05fcbbb3a137f2459fe0b..e6a267dd5d9130c1862a2992aed79077c9df3a75 100644 (file)
@@ -24,7 +24,8 @@ pub fn is_verbatim_sep(b: u8) -> bool {
 pub fn parse_prefix(path: &OsStr) -> Option<Prefix> {
     if let Some(path_str) = path.to_str() {
         if let Some(_i) = path_str.find(':') {
-            //TODO: Redox specific prefix Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
+            // FIXME: Redox specific prefix
+            // Some(Prefix::Verbatim(OsStr::new(&path_str[..i])))
             None
         } else {
             None