Skip to content

Commit 748b0c3

Browse files
Fixed mistake
1 parent 7509125 commit 748b0c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/str/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use crate::slice::{self, SliceIndex, Split as SliceSplit};
2222

2323
pub mod pattern;
2424

25-
#[unstable(feature = "str_internals", issue = "75196")]
25+
#[unstable(feature = "str_internals", issue = "none")]
2626
#[allow(missing_docs)]
2727
pub mod lossy;
2828

@@ -423,7 +423,7 @@ union StrOrSlice<'a> {
423423
/// ```
424424
#[inline]
425425
#[stable(feature = "rust1", since = "1.0.0")]
426-
#[rustc_const_unstable(feature = "const_str_from_utf8_unchecked", issue = "none")]
426+
#[rustc_const_unstable(feature = "const_str_from_utf8_unchecked", issue = "75196")]
427427
#[allow(unused_attributes)]
428428
#[allow_internal_unstable(const_fn_union)]
429429
pub const unsafe fn from_utf8_unchecked(v: &[u8]) -> &str {

0 commit comments

Comments
 (0)