File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -76,12 +76,12 @@ impl char {
76
76
77
77
/// The maximum number of bytes required to [encode](char::encode_utf8) a `char` to
78
78
/// UTF-8 encoding.
79
- #[ unstable( feature = "char_max_len" , issue = "none " ) ]
79
+ #[ unstable( feature = "char_max_len" , issue = "121714 " ) ]
80
80
pub const MAX_LEN_UTF8 : usize = 4 ;
81
81
82
82
/// The maximum number of two-byte units required to [encode](char::encode_utf16) a `char`
83
83
/// to UTF-16 encoding.
84
- #[ unstable( feature = "char_max_len" , issue = "none " ) ]
84
+ #[ unstable( feature = "char_max_len" , issue = "121714 " ) ]
85
85
pub const MAX_LEN_UTF16 : usize = 2 ;
86
86
87
87
/// `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;
95
95
96
96
/// The maximum number of bytes required to [encode](char::encode_utf8) a `char` to
97
97
/// UTF-8 encoding.
98
- #[ unstable( feature = "char_max_len" , issue = "none " ) ]
98
+ #[ unstable( feature = "char_max_len" , issue = "121714 " ) ]
99
99
pub const MAX_LEN_UTF8 : usize = char:: MAX_LEN_UTF8 ;
100
100
101
101
/// The maximum number of two-byte units required to [encode](char::encode_utf16) a `char`
102
102
/// to UTF-16 encoding.
103
- #[ unstable( feature = "char_max_len" , issue = "none " ) ]
103
+ #[ unstable( feature = "char_max_len" , issue = "121714 " ) ]
104
104
pub const MAX_LEN_UTF16 : usize = char:: MAX_LEN_UTF16 ;
105
105
106
106
/// `U+FFFD REPLACEMENT CHARACTER` (�) is used in Unicode to represent a
You can’t perform that action at this time.
0 commit comments