Bump smithay-client-toolkit version to v0.16.0

This commit is contained in:
Kirill Chibisov 2022-06-20 01:25:23 +03:00 committed by Victor Berger
parent f642b3e86d
commit f89b531897
4 changed files with 10 additions and 9 deletions

View file

@ -45,5 +45,5 @@ impl ToString for MimeType {
/// RFC-2046, however the platform line terminator and what applications
/// expect is LF.
pub fn normalize_to_lf(text: String) -> String {
text.replace("\r\n", "\n").replace("\r", "\n")
text.replace("\r\n", "\n").replace('\r', "\n")
}