Skip to content

Commit 312f473

Browse files
committed
update issue number
1 parent ae30dc9 commit 312f473

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

library/core/src/char/methods.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ impl char {
7676

7777
/// The maximum number of bytes required to [encode](char::encode_utf8) a `char` to
7878
/// UTF-8 encoding.
79-
#[unstable(feature = "char_max_len", issue = "none")]
79+
#[unstable(feature = "char_max_len", issue = "121714")]
8080
pub const MAX_LEN_UTF8: usize = 4;
8181

8282
/// The maximum number of two-byte units required to [encode](char::encode_utf16) a `char`
8383
/// to UTF-16 encoding.
84-
#[unstable(feature = "char_max_len", issue = "none")]
84+
#[unstable(feature = "char_max_len", issue = "121714")]
8585
pub const MAX_LEN_UTF16: usize = 2;
8686

8787
/// `U+FFFD REPLACEMENT CHARACTER` (�) is used in Unicode to represent a

library/core/src/char/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ pub const MAX: char = char::MAX;
9595

9696
/// The maximum number of bytes required to [encode](char::encode_utf8) a `char` to
9797
/// UTF-8 encoding.
98-
#[unstable(feature = "char_max_len", issue = "none")]
98+
#[unstable(feature = "char_max_len", issue = "121714")]
9999
pub const MAX_LEN_UTF8: usize = char::MAX_LEN_UTF8;
100100

101101
/// The maximum number of two-byte units required to [encode](char::encode_utf16) a `char`
102102
/// to UTF-16 encoding.
103-
#[unstable(feature = "char_max_len", issue = "none")]
103+
#[unstable(feature = "char_max_len", issue = "121714")]
104104
pub const MAX_LEN_UTF16: usize = char::MAX_LEN_UTF16;
105105

106106
/// `U+FFFD REPLACEMENT CHARACTER` (�) is used in Unicode to represent a

0 commit comments

Comments
 (0)