Skip to content

Commit 5dd01c3

Browse files
committed
fix documentation
1 parent 3065273 commit 5dd01c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/interpreter/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ pub struct Frame<'tcx> {
8282
/// Before being initialized, a local is simply marked as None.
8383
pub locals: Vec<Option<Value>>,
8484

85-
/// Temporaries introduced to save stackframes
85+
/// Temporary allocations introduced to save stackframes
8686
/// This is pure interpreter magic and has nothing to do with how rustc does it
8787
/// An example is calling an FnMut closure that has been converted to a FnOnce closure
88-
/// If they are Value::ByRef, their memory will be freed when the stackframe finishes
88+
/// The memory will be freed when the stackframe finishes
8989
pub interpreter_temporaries: Vec<Pointer>,
9090

9191
////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)