Skip to content

Commit c7ddb89

Browse files
authored
Auto merge of #38019 - sourcefrog:doc-separator, r=frewsxcv
Clearer description of std::path::MAIN_SEPARATOR.
2 parents 03bdaad + 591c134 commit c7ddb89

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/libstd/path.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,9 @@ pub fn is_separator(c: char) -> bool {
254254
c.is_ascii() && is_sep_byte(c as u8)
255255
}
256256

257-
/// The primary separator for the current platform
257+
/// The primary separator of path components for the current platform.
258+
///
259+
/// For example, `/` on Unix and `\` on Windows.
258260
#[stable(feature = "rust1", since = "1.0.0")]
259261
pub const MAIN_SEPARATOR: char = ::sys::path::MAIN_SEP;
260262

0 commit comments

Comments
 (0)