mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
Fix misuse of character/byte in std::path.
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
@@ -120,11 +120,11 @@
|
||||
/// 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.
|
||||
|
||||
Reference in New Issue
Block a user