We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 145b1c4 commit aaecec5Copy full SHA for aaecec5
component-model/examples/example-host/src/sync_add.rs
@@ -23,7 +23,7 @@ pub fn add(path: PathBuf, x: i32, y: i32) -> wasmtime::Result<i32> {
23
// For this simple adder component, no need to manually link additional interfaces.
24
let mut linker = Linker::new(&engine);
25
// Add wasi exports to linker to support io interfaces
26
- wasmtime_wasi::add_to_linker_sync(&mut linker).expect("Coould not add wasi to linker");
+ wasmtime_wasi::add_to_linker_sync(&mut linker).expect("Could not add wasi to linker");
27
let instance = Example::instantiate(&mut store, &component, &linker)
28
.context("Failed to instantiate the example world")?;
29
instance
0 commit comments