File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
crates/wasmtime/src/runtime Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ pub struct StoreOpaque {
348
348
store_data : ManuallyDrop < StoreData > ,
349
349
default_caller : InstanceHandle ,
350
350
351
- /// Used to optimzed wasm->host calls when the host function is defined with
351
+ /// Used to optimized wasm->host calls when the host function is defined with
352
352
/// `Func::new` to avoid allocating a new vector each time a function is
353
353
/// called.
354
354
hostcall_val_storage : Vec < Val > ,
Original file line number Diff line number Diff line change @@ -568,7 +568,7 @@ impl Table {
568
568
if delta == 0 {
569
569
return Ok ( Some ( old_size) ) ;
570
570
}
571
- // Cannot return `Trap::TableOutOfBounds` here becase `impl std::error::Error for Trap` is not available in no-std.
571
+ // Cannot return `Trap::TableOutOfBounds` here because `impl std::error::Error for Trap` is not available in no-std.
572
572
let delta =
573
573
usize:: try_from ( delta) . map_err ( |_| format_err ! ( "delta exceeds host pointer size" ) ) ?;
574
574
Original file line number Diff line number Diff line change 1
- //! Integation with wasm-wave: string representations of values and types
1
+ //! Integration with wasm-wave: string representations of values and types
2
2
3
3
#[ cfg( feature = "component-model" ) ]
4
4
mod component;
You can’t perform that action at this time.
0 commit comments