8000 Fix typo in slot.rs (#5162) · RustPython/RustPython@61e40de · GitHub
[go: up one dir, main page]

Skip to content

Commit 61e40de

Browse files
author
Ikko Eltociear Ashimine
authored
Fix typo in slot.rs (#5162)
overriden -> overridden
1 parent bdf228e commit 61e40de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/types/slot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@ where
12901290
#[cold]
12911291
fn slot_iter(zelf: PyObjectRef, vm: &VirtualMachine) -> PyResult {
12921292
let repr = zelf.repr(vm)?;
1293-
unreachable!("slot must be overriden for {}", repr.as_str());
1293+
unreachable!("slot must be overridden for {}", repr.as_str());
12941294
}
12951295

12961296
fn __iter__(zelf: PyObjectRef, vm: &VirtualMachine) -> PyResult {

0 commit comments

Comments
 (0)
0