diff options
| author | Marijn Haverbeke <marijnh@gmail.com> | 2011-09-02 16:09:41 +0200 |
|---|---|---|
| committer | Marijn Haverbeke <marijnh@gmail.com> | 2011-09-02 16:09:41 +0200 |
| commit | 785c26f7f4490abb19f95035fcb7e9e57ee6556c (patch) | |
| tree | dd00e52a1d767c2c6e668dd348d432a9bfbe11ef /src/comp/syntax | |
| parent | a0e2809f54fcb6ea39fec3b58b0c6fcbcba98cf2 (diff) | |
| download | rust-785c26f7f4490abb19f95035fcb7e9e57ee6556c.tar.gz rust-785c26f7f4490abb19f95035fcb7e9e57ee6556c.zip | |
Rename ivecs to vecs in the compiler
Diffstat (limited to 'src/comp/syntax')
| -rw-r--r-- | src/comp/syntax/ast.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/syntax/ast.rs b/src/comp/syntax/ast.rs index 7e1a7942f75..a6d04451ba1 100644 --- a/src/comp/syntax/ast.rs +++ b/src/comp/syntax/ast.rs @@ -301,9 +301,9 @@ tag ty_ { ty_float; ty_machine(ty_mach); ty_char; - ty_istr; // interior string + ty_istr; ty_box(mt); - ty_vec(mt); // interior vector + ty_vec(mt); ty_ptr(mt); ty_task; ty_port(@ty); |
