diff options
| author | Graydon Hoare <[email protected]> | 2010-07-02 17:13:02 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-02 17:13:02 -0700 |
| commit | 233be40e25b6b9527a01f9c34525a03239164b6c (patch) | |
| tree | 15343976e1d9ae31e460b8cdb505c8cd91791a71 /src | |
| parent | You may get the feeling that all these changes look eerily the same. You woul... (diff) | |
| download | rust-233be40e25b6b9527a01f9c34525a03239164b6c.tar.xz rust-233be40e25b6b9527a01f9c34525a03239164b6c.zip | |
Terminology mop-up.
Diffstat (limited to 'src')
| -rw-r--r-- | src/boot/me/transutil.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/me/transutil.ml b/src/boot/me/transutil.ml index 0ec49c8e..69cba51c 100644 --- a/src/boot/me/transutil.ml +++ b/src/boot/me/transutil.ml @@ -216,7 +216,7 @@ let iter_tup_parts (get_element_ptr:'a -> int -> 'a) (dst_ptr:'a) (src_ptr:'a) - (slots:Ast.ty_tup) + (tys:Ast.ty_tup) (f:'a -> 'a -> Ast.ty -> (Ast.ty_iso option) -> unit) (curr_iso:Ast.ty_iso option) : unit = @@ -227,7 +227,7 @@ let iter_tup_parts (get_element_ptr src_ptr i) ty curr_iso end - slots + tys ;; let iter_rec_parts |