From 689bccbed156a60fbbaa41d46db82bb69193584a Mon Sep 17 00:00:00 2001 From: Scott Olson Date: Mon, 19 Sep 2016 04:49:21 -0600 Subject: [PATCH] Fix comment typo. --- src/interpreter/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter/mod.rs b/src/interpreter/mod.rs index 391ca5bdf985..179c2fc608bf 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -105,7 +105,7 @@ pub struct Frame<'a, 'tcx: 'a> { /// value held directly, outside of any allocation (`ByVal`). /// /// For optimization of a few very common cases, there is also a representation for a pair of -/// primitive values (`ByValPair`). It allows Miri to avoid making allocations for check binary +/// primitive values (`ByValPair`). It allows Miri to avoid making allocations for checked binary /// operations and fat pointers. This idea was taken from rustc's trans. #[derive(Clone, Copy, Debug, PartialEq)] enum Value {