aboutsummaryrefslogtreecommitdiff
path: root/src/grid
diff options
context:
space:
mode:
Diffstat (limited to 'src/grid')
-rw-r--r--src/grid/row.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grid/row.rs b/src/grid/row.rs
index 0a58de97..88a23871 100644
--- a/src/grid/row.rs
+++ b/src/grid/row.rs
@@ -133,7 +133,7 @@ impl<T> Row<T> {
where
T: GridCell,
{
- self.inner.iter().all(|c| c.is_empty())
+ self.inner.iter().all(GridCell::is_empty)
}
#[inline]