@@ -587,7 +587,7 @@ impl String {
587
587
/// between the two. Not all byte slices are valid strings, however: strings
588
588
/// are required to be valid UTF-8. During this conversion,
589
589
/// `from_utf8_lossy()` will replace any invalid UTF-8 sequences with
590
- /// [`U+FFFD REPLACEMENT CHARACTER`][U+FFFD], which looks like this: �
590
+ /// [`U+FFFD REPLACEMENT CHARACTER`][U+FFFD], which looks like this:
591
591
///
592
592
/// [byteslice]: prim@slice
593
593
/// [U+FFFD]: core::char::REPLACEMENT_CHARACTER
@@ -627,7 +627,7 @@ impl String {
627
627
/// let input = b"Hello \xF0\x90\x80World";
628
628
/// let output = String::from_utf8_lossy(input);
629
629
///
630
- /// assert_eq!("Hello � World", output);
630
+ /// assert_eq!("Hello World", output);
631
631
/// ```
632
632
#[ must_use]
633
633
#[ cfg( not( no_global_oom_handling) ) ]
@@ -694,7 +694,7 @@ impl String {
694
694
/// let input: Vec<u8> = b"Hello \xF0\x90\x80World".into();
695
695
/// let output = String::from_utf8_lossy_owned(input);
696
696
///
697
- /// assert_eq!(String::from("Hello � World"), output);
697
+ /// assert_eq!(String::from("Hello World"), output);
698
698
/// ```
699
699
#[ must_use]
700
700
#[ cfg( not( no_global_oom_handling) ) ]
@@ -1419,7 +1419,9 @@ impl String {
1419
1419
pub fn push ( & mut self , ch : char ) {
1420
1420
match ch. len_utf8 ( ) {
1421
1421
1 => self . vec . push ( ch as u8 ) ,
1422
- _ => self . vec . extend_from_slice ( ch. encode_utf8 ( & mut [ 0 ; 4 ] ) . as_bytes ( ) ) ,
1422
+ _ => {
1423
+ self . vec . extend_from_slice ( ch. encode_utf8 ( & mut [ 0 ; char:: MAX_LEN_UTF8 ] ) . as_bytes ( ) )
1424
+ }
1423
1425
}
1424
1426
}
1425
1427
@@ -1716,7 +1718,7 @@ impl String {
1716
1718
#[ rustc_confusables( "set" ) ]
1717
1719
pub fn insert ( & mut self , idx : usize , ch : char ) {
1718
1720
assert ! ( self . is_char_boundary( idx) ) ;
1719
- let mut bits = [ 0 ; 4 ] ;
1721
+ let mut bits = [ 0 ; char :: MAX_LEN_UTF8 ] ;
1720
1722
let bits = ch. encode_utf8 ( & mut bits) . as_bytes ( ) ;
1721
1723
1722
1724
unsafe {
@@ -2148,7 +2150,7 @@ impl FromUtf8Error {
2148
2150
/// let input: Vec<u8> = b"Hello \xF0\x90\x80World".into();
2149
2151
/// let output = String::from_utf8(input).unwrap_or_else(|e| e.into_utf8_lossy());
2150
2152
///
2151
- /// assert_eq!(String::from("Hello � World"), output);
2153
+ /// assert_eq!(String::from("Hello World"), output);
2152
2154
/// ```
2153
2155
#[ must_use]
2154
2156
#[ cfg( not( no_global_oom_handling) ) ]
@@ -2771,7 +2773,7 @@ impl SpecToString for core::ascii::Char {
2771
2773
impl SpecToString for char {
2772
2774
#[ inline]
2773
2775
fn spec_to_string ( & self ) -> String {
2774
- String :: from ( self . encode_utf8 ( & mut [ 0 ; 4 ] ) )
2776
+ String :: from ( self . encode_utf8 ( & mut [ 0 ; char :: MAX_LEN_UTF8 ] ) )
2775
2777
}
2776
2778
}
2777
2779
0 commit comments