Skip to content

Commit 6d22502

Browse files
authored
Merge pull request #85 from phel-lang/fix-typo-macros
fix: typo in macros page.
2 parents 9abc9b4 + cdb1270 commit 6d22502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/documentation/macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ This macro is very simple at does not support all the feature of `defn`. But it
5454

5555
## Quasiquote
5656

57-
For better readability of marcos the `quasiquote` special form is defined. It turns the definition of macros around. Instead of quoting values that should not be evaluated, `quasiquote` marks values that should be evaluated. Every other value is not evaluated. A shorthand for `quasiquote` is the `` ` `` character. Values that should be evaluated are marked with the `unquote` function (shorthand `,`) or `unquote-splicing` function (shorthand `,@`). With quasiquote the `mydefn` macro can be expressed as
57+
For better readability of macros the `quasiquote` special form is defined. It turns the definition of macros around. Instead of quoting values that should not be evaluated, `quasiquote` marks values that should be evaluated. Every other value is not evaluated. A shorthand for `quasiquote` is the `` ` `` character. Values that should be evaluated are marked with the `unquote` function (shorthand `,`) or `unquote-splicing` function (shorthand `,@`). With quasiquote the `mydefn` macro can be expressed as
5858

5959
```phel
6060
(defmacro mydefn [name args & body]

0 commit comments

Comments
 (0)