about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Saveau <saveau.alexandre@gmail.com>2022-10-15 19:03:54 -0700
committerAlex Saveau <saveau.alexandre@gmail.com>2022-10-15 19:13:54 -0700
commitb8d560c19015b9d44f84d6f0396cf713b30f4db7 (patch)
treec53b6d31e51d314c2fd6af1124430a813eb864c2
parent8147e6e427a1b3c4aedcd9fd85bd457888f80972 (diff)
downloadrust-b8d560c19015b9d44f84d6f0396cf713b30f4db7.tar.gz
rust-b8d560c19015b9d44f84d6f0396cf713b30f4db7.zip
Stabilize `main_separator_str`
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
-rw-r--r--library/std/src/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/path.rs b/library/std/src/path.rs
index 9d63281627d..b3468e6234b 100644
--- a/library/std/src/path.rs
+++ b/library/std/src/path.rs
@@ -271,7 +271,7 @@ pub const MAIN_SEPARATOR: char = crate::sys::path::MAIN_SEP;
 /// The primary separator of path components for the current platform.
 ///
 /// For example, `/` on Unix and `\` on Windows.
-#[unstable(feature = "main_separator_str", issue = "94071")]
+#[stable(feature = "main_separator_str", since = "CURRENT_RUSTC_VERSION")]
 pub const MAIN_SEPARATOR_STR: &str = crate::sys::path::MAIN_SEP_STR;
 
 ////////////////////////////////////////////////////////////////////////////////