From 4ab6445dae4e3ed7125afd8f238557ee95f70b29 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Tue, 19 Nov 2019 22:07:49 -0800 Subject: [PATCH] embed-rust: fix grammatical typo --- docs/embed-rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/embed-rust.md b/docs/embed-rust.md index 5593969ff9..95127f5ec8 100644 --- a/docs/embed-rust.md +++ b/docs/embed-rust.md @@ -55,7 +55,7 @@ let hello_wasm = read("hello.wasm").expect("wasm file"); let module = HostRef::new(Module::new(&store, &hello_wasm).expect("wasm module")); ``` -The module instance can now be created. Normally, you would provide exports, but in this case, there is none required: +The module instance can now be created. Normally, you would provide exports, but in this case, there are none required: ```rust let instance = Instance::new(&store, &module, &[]).expect("wasm instance");