We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 03bdaad + 591c134 commit c7ddb89Copy full SHA for c7ddb89
src/libstd/path.rs
@@ -254,7 +254,9 @@ pub fn is_separator(c: char) -> bool {
254
c.is_ascii() && is_sep_byte(c as u8)
255
}
256
257
-/// The primary separator for the current platform
+/// The primary separator of path components for the current platform.
258
+///
259
+/// For example, `/` on Unix and `\` on Windows.
260
#[stable(feature = "rust1", since = "1.0.0")]
261
pub const MAIN_SEPARATOR: char = ::sys::path::MAIN_SEP;
262
0 commit comments