diff options
| author | bors <bors@rust-lang.org> | 2014-01-20 11:41:29 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-20 11:41:29 -0800 |
| commit | d4640f9d661ac293bce5f5bc9f8e9150d363e178 (patch) | |
| tree | f9b1dda1db594748c7e4387b11a62df8a6c8e360 /src/libstd | |
| parent | bf89b68a3702e10b18e84ef37c3aa19f13418731 (diff) | |
| parent | 6b18ef535808f41c9292da0bd4ed366dac649656 (diff) | |
| download | rust-d4640f9d661ac293bce5f5bc9f8e9150d363e178.tar.gz rust-d4640f9d661ac293bce5f5bc9f8e9150d363e178.zip | |
auto merge of #11673 : omasanori/rust/sep-doc, r=alexcrichton
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/path/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs index 3ba0878b0e6..56df14ba763 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. |
