From 6b18ef535808f41c9292da0bd4ed366dac649656 Mon Sep 17 00:00:00 2001 From: OGINO Masanori Date: Mon, 20 Jan 2014 07:42:28 +0900 Subject: [PATCH] Fix misuse of character/byte in std::path. Signed-off-by: OGINO Masanori --- src/libstd/path/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs index 253d99c11ebac..41365280e13ef 100644 --- a/src/libstd/path/mod.rs +++ b/src/libstd/path/mod.rs @@ -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.