Skip to content

Commit

Permalink
style: add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiZed authored and Stefan Matlage committed Apr 24, 2024
1 parent e8391f2 commit 7124ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ fn trans(chars: &[u8], mut index: usize) -> Result<(i64, usize), String> {
}

if !valid {
return Err(format!("Couldn't decode character at index {}", index - 1))
return Err(format!("Couldn't decode character at index {}", index - 1));
}

let coordinate_change = if (result & 1) > 0 {
Expand Down

0 comments on commit 7124ec5

Please sign in to comment.