Skip to content

Commit ec7f1d5

Browse files
authored
Fix typo
1 parent dd7735b commit ec7f1d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/step.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ impl<'a, 'tcx> EvalContext<'a, 'tcx> {
130130
StorageLive(ref lvalue) | StorageDead(ref lvalue)=> {
131131
let (frame, local) = match self.eval_lvalue(lvalue)? {
132132
Lvalue::Local{ frame, local, field: None } if self.stack.len() == frame+1 => (frame, local),
133-
_ => return Err(EvalError::Unimplemented("Stroage annotations must refer to locals of the topmost stack frame.".to_owned())) // FIXME maybe this should get its own error type
133+
_ => return Err(EvalError::Unimplemented("Storage annotations must refer to locals of the topmost stack frame.".to_owned())) // FIXME maybe this should get its own error type
134134
};
135135
let old_val = match stmt.kind {
136136
StorageLive(_) => self.stack[frame].storage_live(local)?,

0 commit comments

Comments
 (0)