Skip to content

Commit 6262800

Browse files
author
Phosra
authored
Remove erroneous return type (#68)
1 parent bac799d commit 6262800

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/esm-integration/EXAMPLES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Wasm exports can be imported as accurate, immutable bindings to other wasm modul
156156
;; main.wat --> main.wasm
157157
(module
158158
(import "./counter.wasm" "count" (global i32))
159-
(import "./counter.wasm" "increment" (func $increment (result i32)))
159+
(import "./counter.wasm" "increment" (func $increment))
160160
)
161161
162162
;; counter.wat --> counter.wasm

0 commit comments

Comments
 (0)