0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-22 05:58:21 -05:00

feat: remove space from the end of the line

This commit is contained in:
neon_arch 2023-08-02 20:07:29 +03:00
parent d8bd2feb6e
commit 11bcf9c98a

View File

@ -91,7 +91,7 @@ impl Config {
.lock() .lock()
.write_all(&format!("Config Error: The value of `threads` option should be a non zero positive integer\nFalling back to using {} threads\n", total_num_of_threads).into_bytes())?; .write_all(&format!("Config Error: The value of `threads` option should be a non zero positive integer\nFalling back to using {} threads\n", total_num_of_threads).into_bytes())?;
}; };
total_num_of_threads as u8 total_num_of_threads as u8
} else { } else {
parsed_threads parsed_threads
}; };