Skip to content

Commit

Permalink
Consistent style
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Jan 25, 2024
1 parent f6a13d6 commit df28170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub fn is_number(c: u8) -> bool {
}

pub fn is_separator(c: u8) -> bool {
return !is_alpha(c) && !is_number(c) && c != b'\0';
!is_alpha(c) && !is_number(c) && c != b'\0'
}

pub fn to_lower(c: u8) -> u8 {
Expand Down

0 comments on commit df28170

Please sign in to comment.