From 2ce6d1a205b00db56e1a24aa0507c37eca0e3602 Mon Sep 17 00:00:00 2001 From: nabijaczleweli Date: Sun, 4 Aug 2019 22:49:58 +0200 Subject: [PATCH] Fix std::path::MAIN_SEPARATOR's doc rendering --- src/libstd/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/path.rs b/src/libstd/path.rs index 126bc3754dabc..26cc93bd2f4ab 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -279,7 +279,7 @@ pub fn is_separator(c: char) -> bool { /// The primary separator of path components for the current platform. /// -/// For example, `/` on Unix and `\` on Windows. +/// For example, `/` on Unix and `\\` on Windows. #[stable(feature = "rust1", since = "1.0.0")] pub const MAIN_SEPARATOR: char = crate::sys::path::MAIN_SEP;