Fix some linting errors

This commit is contained in:
2026-02-06 20:50:15 -06:00
parent c665ed878e
commit 95dca5fba1

View File

@@ -198,14 +198,14 @@ impl Crossword {
self.height
}
pub fn iter_cells(&self) -> CrosswordIterator {
pub fn iter_cells(&self) -> CrosswordIterator<'_> {
CrosswordIterator {
crossword: self,
position: 0,
}
}
pub fn cell(&self, x: usize, y: usize) -> CrosswordCell {
pub fn cell(&self, x: usize, y: usize) -> CrosswordCell<'_> {
CrosswordCell {
x,
y,