Remove deprecated owned vector from macro guide.
This commit is contained in:
parent
c3825cbb9d
commit
f740e8dde1
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ To take as an argument a fragment of Rust code, write `$` followed by a name
|
|||
`foo`.)
|
||||
* `expr` (an expression. Examples: `2 + 2`; `if true then { 1 } else { 2 }`;
|
||||
`f(42)`.)
|
||||
* `ty` (a type. Examples: `int`, `~[(char, String)]`, `&T`.)
|
||||
* `ty` (a type. Examples: `int`, `Vec<(char, String)>`, `&T`.)
|
||||
* `pat` (a pattern, usually appearing in a `match` or on the left-hand side of
|
||||
a declaration. Examples: `Some(t)`; `(17, 'a')`; `_`.)
|
||||
* `block` (a sequence of actions. Example: `{ log(error, "hi"); return 12; }`)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue