Skip to content

Commit 4d412d9

Browse files
authored
Merge pull request #85 from Liamolucko/patch-1
Respect `MAX_FLAT_RESULTS` in Explainer.md
2 parents d334e4d + cd75cf9 commit 4d412d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

design/mvp/Explainer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ takes a string, does some logging, then returns a string.
726726
(import "libc" "memory" (memory 1))
727727
(import "libc" "realloc" (func (param i32 i32) (result i32)))
728728
(import "wasi:logging" "log" (func $log (param i32 i32)))
729-
(func (export "run") (param i32 i32) (result i32 i32)
729+
(func (export "run") (param i32 i32) (result i32)
730730
... (call $log) ...
731731
)
732732
)
@@ -786,7 +786,7 @@ exported string at instantiation time:
786786
(core instance $libc (instantiate $Libc))
787787
(core module $Main
788788
(import "libc" ...)
789-
(func (export "start") (param i32 i32) (result i32 i32)
789+
(func (export "start") (param i32 i32) (result i32)
790790
... general-purpose compute
791791
)
792792
)

0 commit comments

Comments
 (0)