More lints

This commit is contained in:
Andras Schmelczer 2024-12-18 22:27:25 +00:00
parent 1e1dd7b877
commit 2d5c91a5ef
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
7 changed files with 27 additions and 20 deletions

View file

@ -110,8 +110,7 @@ where
#[cfg(debug_assertions)]
debug_assert!(
deleted_text
.as_ref()
.map_or(true, |text| builder.get_slice(self.range()) == *text),
.as_ref().is_none_or(|text| builder.get_slice(self.range()) == *text),
"Text to delete does not match the text in the rope"
);