Skip to content

Commit 6b18ef5

Browse files
committed
Fix misuse of character/byte in std::path.
Signed-off-by: OGINO Masanori <[email protected]>
1 parent 18061e8 commit 6b18ef5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/path/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ pub use RevStrComponents = self::windows::RevStrComponents;
120120
/// Alias for the platform-native separator character.
121121
#[cfg(unix)]
122122
pub use SEP = self::posix::SEP;
123-
/// Alias for the platform-native separator byte.
123+
/// Alias for the platform-native separator character.
124124
#[cfg(windows)]
125125
pub use SEP = self::windows::SEP;
126126

127-
/// Alias for the platform-native separator character.
127+
/// Alias for the platform-native separator byte.
128128
#[cfg(unix)]
129129
pub use SEP_BYTE = self::posix::SEP_BYTE;
130130
/// Alias for the platform-native separator byte.

0 commit comments

Comments
 (0)