File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
crates/wasmi/src/engine/translator/translator2/stack Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ impl Stack {
142
142
///
143
143
/// # Note
144
144
///
145
- /// Calls `f` for every non [`StackOperand ::Temp`] operand on the [`Stack`]
145
+ /// Calls `f` for every non [`Operand ::Temp`] operand on the [`Stack`]
146
146
/// that is also a parameter to the pushed Wasm `loop` control frame.
147
147
///
148
148
/// # Panics (debug)
@@ -358,7 +358,7 @@ impl Stack {
358
358
359
359
/// Preserve all locals on the [`Stack`] that refer to `local_index`.
360
360
///
361
- /// This is done by converting those locals to [`StackOperand ::Temp`] and yielding them.
361
+ /// This is done by converting those locals to [`Operand ::Temp`] and yielding them.
362
362
///
363
363
/// # Note
364
364
///
@@ -373,11 +373,11 @@ impl Stack {
373
373
self . operands . preserve_locals ( local_index)
374
374
}
375
375
376
- /// Converts and returns the [`StackOperand`] at `depth` into a [`StackOperand ::Temp`].
376
+ /// Converts and returns the [`StackOperand`] at `depth` into a [`Operand ::Temp`].
377
377
///
378
378
/// # Note
379
379
///
380
- /// Returns `None` if operand at `depth` is [`StackOperand ::Temp`] already.
380
+ /// Returns `None` if operand at `depth` is [`Operand ::Temp`] already.
381
381
///
382
382
/// # Panics
383
383
///
You can’t perform that action at this time.
0 commit comments