File tree 1 file changed +3
-3
lines changed
src/librustc_mir/interpret
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ pub enum StackPopCleanup {
98
98
/// Jump to the next block in the caller, or cause UB if None (that's a function
99
99
/// that may never return). Also store layout of return place so
100
100
/// we can validate it at that layout.
101
- /// `ret` stores the block we jump to on a normal return, while ' unwind'
102
- /// stores the block used for cleanup during unwinding
101
+ /// `ret` stores the block we jump to on a normal return, while ` unwind`
102
+ /// stores the block used for cleanup during unwinding.
103
103
Goto { ret : Option < mir:: BasicBlock > , unwind : Option < mir:: BasicBlock > } ,
104
- /// Just do nohing : Used by Main and for the box_alloc hook in miri.
104
+ /// Just do nothing : Used by Main and for the ` box_alloc` hook in miri.
105
105
/// `cleanup` says whether locals are deallocated. Static computation
106
106
/// wants them leaked to intern what they need (and just throw away
107
107
/// the entire `ecx` when it is done).
You can’t perform that action at this time.
0 commit comments