Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Jul 24, 2024
1 parent 3e01e8b commit c64b87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arg_previous_greater.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ where
let mut i = (i as i32) - 1; // look at previous element
while i >= 0 && ca.get(i as usize).is_none() {
// find previous non-null value
i = i - 1
i -= 1;
}
if i < 0 {
idx.push(-1);
Expand Down

0 comments on commit c64b87b

Please sign in to comment.