about summary refs log tree commit diff
path: root/src/libstd/path
diff options
context:
space:
mode:
authorOGINO Masanori <masanori.ogino@gmail.com>2014-01-20 07:42:28 +0900
committerOGINO Masanori <masanori.ogino@gmail.com>2014-01-20 07:42:28 +0900
commit6b18ef535808f41c9292da0bd4ed366dac649656 (patch)
tree415e9bc5d7ad44f364a2cf3e5735f097570d81b6 /src/libstd/path
parent18061e85b79915deb9f04c78aac7b63b837432dd (diff)
downloadrust-6b18ef535808f41c9292da0bd4ed366dac649656.tar.gz
rust-6b18ef535808f41c9292da0bd4ed366dac649656.zip
Fix misuse of character/byte in std::path.
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
Diffstat (limited to 'src/libstd/path')
-rw-r--r--src/libstd/path/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs
index 253d99c11eb..41365280e13 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.