diff options
| author | Youngmin Yoo <youngmin.yoo@samsung.com> | 2013-05-08 17:49:43 +0900 |
|---|---|---|
| committer | Youngmin Yoo <youngmin.yoo@samsung.com> | 2013-05-09 14:20:04 +0900 |
| commit | 841f4ceaf41687f1e59b1e56a7737bc478a88e06 (patch) | |
| tree | 322eaa75554822e1c727964e608a0e7aac233561 /src/libsyntax | |
| parent | d4fa0f148518aa30aa84b4194b9da7ab595dad56 (diff) | |
| download | rust-841f4ceaf41687f1e59b1e56a7737bc478a88e06.tar.gz rust-841f4ceaf41687f1e59b1e56a7737bc478a88e06.zip | |
libsyntax: rename vec::each(var) to var.each
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast_util.rs b/src/libsyntax/ast_util.rs index 7b20d71fdc4..77277dea814 100644 --- a/src/libsyntax/ast_util.rs +++ b/src/libsyntax/ast_util.rs @@ -461,7 +461,7 @@ pub fn id_visitor(vfn: @fn(node_id)) -> visit::vt<()> { } } - for vec::each(d.inputs) |arg| { + for d.inputs.each |arg| { vfn(arg.id) } }, |
