From 02eed64cc0c0fdd992713c5b5b1dfdd3813e09bf Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Fri, 3 Jun 2016 17:04:08 +0200 Subject: [PATCH] update documentation --- 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 079ed6cf59af..d97ad5d47628 100644 --- a/src/interpreter/mod.rs +++ b/src/interpreter/mod.rs @@ -75,7 +75,7 @@ struct Frame<'a, 'tcx: 'a> { /// The MIR for the function called on this frame. mir: CachedMir<'a, 'tcx>, - /// The block this frame will execute when a function call returns back to this frame. + /// The block that is currently executed (or will be executed after the above call stacks return) next_block: mir::BasicBlock, /// A pointer for writing the return value of the current call if it's not a diverging call.