Skip to content

Commit

Permalink
Fix typos in toplevel macro invocations (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt authored Dec 16, 2024
1 parent 9d73a41 commit a22bf43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conformance/tdl/if_none.ion
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(mactab (macro foo () (.$ion::if_none)))
(mactab (macro foo () (.$ion::if_none 2)))
(mactab (macro foo () (.$ion::if_none 2 3)))
(then (toplevel 0 ('$#:foo') 1)
(then (toplevel 0 ('#$:foo') 1)
(produces 0 1))))

(ion_1_1 "when the first argument is"
Expand Down
2 changes: 1 addition & 1 deletion conformance/tdl/if_single.ion
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(mactab (macro foo () (.$ion::if_single)))
(mactab (macro foo () (.$ion::if_single (..))))
(mactab (macro foo () (.$ion::if_single (..) 3)))
(then (toplevel 0 ('$#:foo') 1)
(then (toplevel 0 ('#$:foo') 1)
(produces 0 1))))

(ion_1_1 "when the first argument is"
Expand Down
2 changes: 1 addition & 1 deletion conformance/tdl/if_some.ion
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(mactab (macro foo () (.$ion::if_some)))
(mactab (macro foo () (.$ion::if_some (..))))
(mactab (macro foo () (.$ion::if_some (..) 3)))
(then (toplevel 0 ('$#:foo') 1)
(then (toplevel 0 ('#$:foo') 1)
(produces 0 1))))

(ion_1_1 "when the first argument is"
Expand Down

0 comments on commit a22bf43

Please sign in to comment.