Skip to content

Commit 9e34f49

Browse files
move Macro invocation from section on tuple to section on mac… (#2206)
move ```Macro invocation``` from section on tuple to section on macros
2 parents 8010af7 + be91ce0 commit 9e34f49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/appendix-02-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ macros and specifying attributes on an item.
153153
| `$ident` | Macro substitution |
154154
| `$ident:kind` | Macro capture |
155155
| `$(…)…` | Macro repetition |
156+
| `ident!(...)`, `ident!{...}`, `ident![...]` | Macro invocation |
156157

157158
Table B-7 shows symbols that create comments.
158159

@@ -180,7 +181,6 @@ Table B-8 shows symbols that appear in the context of using tuples.
180181
| `(expr, ...)` | Tuple expression |
181182
| `(type, ...)` | Tuple type |
182183
| `expr(expr, ...)` | Function call expression; also used to initialize tuple `struct`s and tuple `enum` variants |
183-
| `ident!(...)`, `ident!{...}`, `ident![...]` | Macro invocation |
184184
| `expr.0`, `expr.1`, etc. | Tuple indexing |
185185

186186
Table B-9 shows the contexts in which curly braces are used.

0 commit comments

Comments
 (0)