File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,7 @@ let x: Vec<u32> = {
5757We can implement this shorthand, using a macro: [ ^ actual ]
5858
5959[ ^ actual ] : The actual definition of ` vec! ` in libcollections differs from the
60- one presented here, for reasons of efficiency and reusability. Some
61- of these are mentioned in the [ advanced macros chapter] [ ] .
60+ one presented here, for reasons of efficiency and reusability.
6261
6362``` rust
6463macro_rules! vec {
@@ -106,7 +105,7 @@ These have [their own little grammar] within the language.
106105
107106The matcher ` $x:expr ` will match any Rust expression, binding that syntax tree
108107to the ‘metavariable’ ` $x ` . The identifier ` expr ` is a ‘fragment specifier’;
109- the full possibilities are enumerated in the [ advanced macros chapter] [ ] .
108+ the full possibilities are enumerated later in this chapter.
110109Surrounding the matcher with ` $(...),* ` will match zero or more expressions,
111110separated by commas.
112111
You can’t perform that action at this time.
0 commit comments