unneeded parentheses

This commit is contained in:
Simon Gardling 2022-03-28 13:12:17 -04:00
parent 1b183e29d8
commit 8c3aa1d0d4

View File

@ -109,7 +109,7 @@ pub fn process_func_str(function_in: &str) -> String {
if (prev_prev_prev_char == 'l') if (prev_prev_prev_char == 'l')
&& (prev_prev_char == 'o') && (prev_prev_char == 'o')
&& (prev_char == 'g') && (prev_char == 'g')
&& (c_is_number) && c_is_number
{ {
prev_chars.push(c); prev_chars.push(c);
output_string += &c.to_string(); output_string += &c.to_string();