I read this ``` #[cfg(windows)] mod consts { const path_sep: char = '/'; // "The primary path separator character for the platform" const alt_path_sep: char = '\\'; } ``` and ``` #[doc = "Get the default path separator for the host platform"] fn path_sep() -> str { ret str::from_char(consts::path_sep); } ``` as "'/' is the default and primary path separator on Windows". Is this a bug?