core/incremental: Fix typos in cursor.rs

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Pekka Enberg
2025-09-05 15:40:45 +03:00
committed by GitHub
parent 08b2e685d5
commit 832e0dee81

View File

@@ -198,13 +198,13 @@ impl MaterializedViewCursor {
let min_seen = btree_entries
.changes
.first()
.expect("canot be empty, we just tested for it")
.expect("cannot be empty, we just tested for it")
.0
.rowid;
let max_seen = btree_entries
.changes
.last()
.expect("canot be empty, we just tested for it")
.expect("cannot be empty, we just tested for it")
.0
.rowid;