From a0612445e3225324276632e38928e505307d0a96 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 12 Nov 2021 03:25:26 -0500 Subject: clippy --- src/cell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cell.rs') diff --git a/src/cell.rs b/src/cell.rs index aa1b718..7262c8d 100644 --- a/src/cell.rs +++ b/src/cell.rs @@ -11,7 +11,7 @@ pub struct Cell { } #[allow(clippy::collapsible_if)] -impl PartialEq for Cell { +impl PartialEq for Cell { fn eq(&self, other: &Self) -> bool { if self.len != other.len { return false; -- cgit v1.2.3-54-g00ecf