File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 " ) ]
9999pub 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 " ) ]
104104pub const MAX_LEN_UTF16 : usize = char:: MAX_LEN_UTF16 ;
105105
106106/// `U+FFFD REPLACEMENT CHARACTER` (�) is used in Unicode to represent a
You can’t perform that action at this time.
0 commit comments