]> git.lizzy.rs Git - rust.git/commitdiff
update documentation
authorOliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>
Fri, 3 Jun 2016 15:04:08 +0000 (17:04 +0200)
committerOliver Schneider <git-spam-no-reply9815368754983@oli-obk.de>
Fri, 3 Jun 2016 15:04:08 +0000 (17:04 +0200)
src/interpreter/mod.rs

index 079ed6cf59af9ffdb63bc9b66040047f7d89bd33..d97ad5d47628315a2a42a725c2c89a45421b0626 100644 (file)
@@ -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.