Fix misuse of character/byte in std::path.
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
parent
18061e85b7
commit
6b18ef5358
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue