Skip to content

Commit 2c3f9d8

Browse files
committed
fix tidy
1 parent 312f473 commit 2c3f9d8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

library/alloc/src/string.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1344,7 +1344,6 @@ impl String {
13441344
#[inline]
13451345
#[stable(feature = "rust1", since = "1.0.0")]
13461346
pub fn push(&mut self, ch: char) {
1347-
13481347
match ch.len_utf8() {
13491348
1 => self.vec.push(ch as u8),
13501349
_ => self.vec.extend_from_slice(ch.encode_utf8(&mut [0; MAX_LEN_UTF8]).as_bytes()),

0 commit comments

Comments
 (0)