Skip to content

Commit 0a84dc7

Browse files
committed
code review updates
1 parent 1160d30 commit 0a84dc7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ The WASM API consists of these main components:
2929
### Prerequisites
3030

3131
- [Rust](https://www.rust-lang.org/tools/install) (latest stable version)
32-
- [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) for building WebAssembly modules
33-
3432

3533
### Basic Usage
3634

@@ -48,14 +46,14 @@ fn main(context: &mut Context) -> Result<()> {
4846
}
4947
```
5048

51-
To build a function example, create a new example and build it targeting `wasm32-wasi` with `shopify_function_wasm_api` as the provider:
49+
To build a function example, create a new example and build it targeting `wasm32-wasip1`:
5250

5351
```shell
5452
cargo build --release --target wasm32-wasip1 -p shopify_function_wasm_api --example echo
5553
```
5654

5755

58-
The trampoline tool bridges communication between your WASM module and Shopify's runtime. To trampoline your function wasm:
56+
The trampoline tool bridges communication between your Wasm module and the provider module. To trampoline your Wasm module:
5957

6058
```shell
6159
# Short flags

0 commit comments

Comments
 (0)