From 11bcf9c98abb87258181e61894b06f8baa47c28c Mon Sep 17 00:00:00 2001 From: neon_arch Date: Wed, 2 Aug 2023 20:07:29 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20remove=20space=20from=20the?= =?UTF-8?q?=20end=20of=20the=20line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/parser.rs b/src/config/parser.rs index 81fa6b8..079084e 100644 --- a/src/config/parser.rs +++ b/src/config/parser.rs @@ -91,7 +91,7 @@ impl Config { .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())?; }; - total_num_of_threads as u8 + total_num_of_threads as u8 } else { parsed_threads };