diff options
| author | Jonathan Reem <jonathan.reem@gmail.com> | 2014-05-30 19:05:47 -0700 |
|---|---|---|
| committer | Jonathan Reem <jonathan.reem@gmail.com> | 2014-05-30 21:30:20 -0700 |
| commit | f740e8dde1a9ffa11865eb0d980423192142f049 (patch) | |
| tree | 5cdb0cc25fec44952d796cc13848ef99e5658279 | |
| parent | c3825cbb9dfd5605c507055c40e769a5f6800bab (diff) | |
| download | rust-f740e8dde1a9ffa11865eb0d980423192142f049.tar.gz rust-f740e8dde1a9ffa11865eb0d980423192142f049.zip | |
Remove deprecated owned vector from macro guide.
| -rw-r--r-- | src/doc/guide-macros.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-macros.md b/src/doc/guide-macros.md index 12a0ee6931c..b86a6aa1b61 100644 --- a/src/doc/guide-macros.md +++ b/src/doc/guide-macros.md @@ -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; }`) |
