Skip to content

Commit ee6f6f1

Browse files
authored
fix typo in metaprogramming.md (#39095)
Fix typo
1 parent 383db92 commit ee6f6f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/metaprogramming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ julia> :(::)
149149
The second syntactic purpose of the `:` character is to create expression objects without using
150150
the explicit [`Expr`](@ref) constructor. This is referred to as *quoting*. The `:` character, followed
151151
by paired parentheses around a single statement of Julia code, produces an `Expr` object based
152-
on the enclosed code. Here is example of the short form used to quote an arithmetic expression:
152+
on the enclosed code. Here is an example of the short form used to quote an arithmetic expression:
153153

154154
```jldoctest
155155
julia> ex = :(a+b*c+1)

0 commit comments

Comments
 (0)