mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
doc: Fix spelling error in macro tutorial
This commit is contained in:
parent
802d475190
commit
e4571446f9
@ -115,7 +115,7 @@ to transcribe into the macro expansion; its type need not be repeated.
|
||||
The right-hand side must be enclosed by delimiters, which are ignored by the
|
||||
transcriber (therefore `() => ((1,2,3))` is a macro that expands to a tuple
|
||||
expression, `() => (let $x=$val)` is a macro that expands to a statement, and
|
||||
`() => (1,2,3)` is a macro that expands to a syntax errror).
|
||||
`() => (1,2,3)` is a macro that expands to a syntax error).
|
||||
|
||||
Except for permissibility of `$name` (and `$(...)*`, discussed below), the
|
||||
right-hand side of a macro definition is ordinary Rust syntax. In particular,
|
||||
|
Loading…
Reference in New Issue
Block a user