We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f18aaa4 commit 9dd03a9Copy full SHA for 9dd03a9
src/desktop.rs
@@ -33,7 +33,8 @@ pub fn get_desktop_info() -> String {
33
let mut result =
34
String::with_capacity(desktop_str.len() + backend_str.len() + 3);
35
result.push_str(desktop_str);
36
- result.push_str(" (");
+ result.push(' ');
37
+ result.push('(');
38
39
// Capitalize first character of backend
40
if let Some(first_char) = backend_str.chars().next() {
0 commit comments