Fix misuse of character/byte in std::path.

Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
OGINO Masanori 2014-01-20 07:42:28 +09:00
parent 18061e85b7
commit 6b18ef5358

View File

@ -120,11 +120,11 @@ pub use RevStrComponents = self::windows::RevStrComponents;
/// Alias for the platform-native separator character.
#[cfg(unix)]
pub use SEP = self::posix::SEP;
/// Alias for the platform-native separator byte.
/// Alias for the platform-native separator character.
#[cfg(windows)]
pub use SEP = self::windows::SEP;
/// Alias for the platform-native separator character.
/// Alias for the platform-native separator byte.
#[cfg(unix)]
pub use SEP_BYTE = self::posix::SEP_BYTE;
/// Alias for the platform-native separator byte.