Fix typo.

This commit is contained in:
Scott Olson 2016-03-13 14:46:24 -06:00
parent f145017319
commit 373f8a7a87

View file

@ -43,7 +43,7 @@ impl fmt::Display for EvalError {
/// A stack frame.
struct Frame<'a, 'tcx: 'a> {
/// The MIR for the fucntion called on this frame.
/// The MIR for the function called on this frame.
mir: &'a mir::Mir<'tcx>,
/// A pointer for writing the return value of the current call, if it's not a diverging call.