Spaces:
Runtime error
Runtime error
neon_arch
commited on
Commit
•
11bcf9c
1
Parent(s):
d8bd2fe
✨ feat: remove space from the end of the line
Browse files- src/config/parser.rs +1 -1
src/config/parser.rs
CHANGED
@@ -91,7 +91,7 @@ impl Config {
|
|
91 |
.lock()
|
92 |
.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())?;
|
93 |
};
|
94 |
-
total_num_of_threads as u8
|
95 |
} else {
|
96 |
parsed_threads
|
97 |
};
|
|
|
91 |
.lock()
|
92 |
.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())?;
|
93 |
};
|
94 |
+
total_num_of_threads as u8
|
95 |
} else {
|
96 |
parsed_threads
|
97 |
};
|