File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ impl ReusableAllocationStack {
467
467
468
468
/// The engine's stacks for reuse.
469
469
///
470
- /// Rquired for efficient concurrent Wasm executions.
470
+ /// Required for efficient concurrent Wasm executions.
471
471
#[ derive( Debug ) ]
472
472
pub struct EngineStacks {
473
473
/// Stacks to be (re)used.
Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ impl<T> Linker<T> {
475
475
module : & Module ,
476
476
) -> Result < InstancePre , Error > {
477
477
assert ! ( Engine :: same( self . engine( ) , context. as_context( ) . engine( ) ) ) ;
478
- // TODO: possibly add further resource limtation here on number of externals.
478
+ // TODO: possibly add further resource limitation here on number of externals.
479
479
// Not clear that user can't import the same external lots of times to inflate this.
480
480
let externals = module
481
481
. imports ( )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ use wasmparser::AbstractHeapType;
21
21
#[ cfg( feature = "simd" ) ]
22
22
use crate :: core:: V128 ;
23
23
24
- /// Types that allow evluation given an evaluation context.
24
+ /// Types that allow evaluation given an evaluation context.
25
25
pub trait Eval {
26
26
/// Evaluates `self` given an [`EvalContext`].
27
27
fn eval ( & self , ctx : & dyn EvalContext ) -> Option < UntypedVal > ;
Original file line number Diff line number Diff line change @@ -529,7 +529,7 @@ impl WastRunner {
529
529
///
530
530
/// - If no module instances can be found.
531
531
/// - If no function identified with `func_name` can be found.
532
- /// - If function invokation returned an error.
532
+ /// - If function invocation returned an error.
533
533
///
534
534
/// [`Func`]: wasmi::Func
535
535
fn invoke ( & mut self , invoke : wast:: WastInvoke ) -> Result < ( ) > {
You can’t perform that action at this time.
0 commit comments