Skip to content

Commit cdb1270

Browse files
committed
fix: typo in macros page.
1 parent 9abc9b4 commit cdb1270

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)