Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Dec 28, 2024
1 parent 9479866 commit 08165c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rio-backend/src/crosswords/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2403,7 +2403,8 @@ impl<U: EventListener> Handler for Crosswords<U> {
}

let line = self.grid.cursor.pos.row.0 as usize;
self.damage.damage_line(line, old_col, self.grid.cursor.pos.col.0);
self.damage
.damage_line(line, old_col, self.grid.cursor.pos.col.0);
}

#[inline]
Expand Down

0 comments on commit 08165c1

Please sign in to comment.