Skip to content

Commit 0dc07b0

Browse files
Merge pull request #8277 from robstoll/patch-23
doc(macros): wrap 'x into ``
2 parents 2dba45c + 46a9754 commit 0dc07b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/docs/reference/metaprogramming/macros.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ quotation.
6060

6161
Quotes and splices can also be applied directly to identifiers. An identifier
6262
`$x` starting with a `$` that appears inside a quoted expression or type is treated as a
63-
splice `${x}`. Analogously, an quoted identifier 'x that appears inside a splice
63+
splice `${x}`. Analogously, an quoted identifier `'x` that appears inside a splice
6464
is treated as a quote `'{x}`. See the Syntax section below for details.
6565

6666
Quotes and splices are duals of each other. For arbitrary
@@ -110,7 +110,7 @@ allowed everywhere.
110110

111111
The phase consistency principle can be motivated as follows: First,
112112
suppose the result of a program `P` is some quoted text `'{ ... x
113-
... }` that refers to a free variable `x` in `P` This can be
113+
... }` that refers to a free variable `x` in `P`. This can be
114114
represented only by referring to the original variable `x`. Hence, the
115115
result of the program will need to persist the program state itself as
116116
one of its parts. We don’t want to do this, hence this situation

0 commit comments

Comments
 (0)