Skip to content

Commit 79c0614

Browse files
authored
Merge pull request #188 from rylev/fix-missing-paren
Add missing paren in explainer example
2 parents 1df910c + d7438d4 commit 79c0614

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

design/mvp/Explainer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -363,17 +363,17 @@ With what's defined so far, we're able to link modules with arbitrary renamings:
363363
)
364364
(core instance $a (instantiate $A))
365365
(core instance $b1 (instantiate $B
366-
(with "a" (instance $a)) ;; no renaming
366+
(with "a" (instance $a)) ;; no renaming
367367
))
368-
(core func $a_two (alias core export $a "two") ;; ≡ (alias core export $a "two" (core func $a_two))
368+
(core func $a_two (alias core export $a "two")) ;; ≡ (alias core export $a "two" (core func $a_two))
369369
(core instance $b2 (instantiate $B
370370
(with "a" (instance
371-
(export "one" (func $a_two)) ;; renaming, using out-of-line alias
371+
(export "one" (func $a_two)) ;; renaming, using out-of-line alias
372372
))
373373
))
374374
(core instance $b3 (instantiate $B
375375
(with "a" (instance
376-
(export "one" (func $a "three")) ;; renaming, using <inlinealias>
376+
(export "one" (func $a "three")) ;; renaming, using <inlinealias>
377377
))
378378
))
379379
)

0 commit comments

Comments
 (0)