Skip to content

Commit

Permalink
style: add semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiZed committed Apr 24, 2024
1 parent 910603f commit faedc5e
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 faedc5e

Please sign in to comment.