handle clippy::single-char-add-str

This commit is contained in:
Brandon W Maister 2020-11-20 12:28:14 -05:00
parent 6e31ebc0aa
commit 8c7e192a62

View File

@ -558,7 +558,7 @@ fn format_inner<'a>(
write!(result, "{}{:02}{:02}", sign, off / 3600, off / 60 % 60)
}
} else {
result.push_str("Z");
result.push('Z');
Ok(())
}
}