diff options
| author | Graydon Hoare <[email protected]> | 2010-10-14 15:27:14 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-10-14 15:27:50 -0700 |
| commit | 09b12d167fcdf6f122726bde977d3ce01d81e607 (patch) | |
| tree | 3cbc0b4afe73753d8d2c6525440d8c4e5fbe6a68 /src/boot | |
| parent | rustc: Start work on lvals (diff) | |
| download | rust-09b12d167fcdf6f122726bde977d3ce01d81e607.tar.xz rust-09b12d167fcdf6f122726bde977d3ce01d81e607.zip | |
Fix typos in Type.friendly_stringify.
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/me/type.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/boot/me/type.ml b/src/boot/me/type.ml index 648618e7..434bab7e 100644 --- a/src/boot/me/type.ml +++ b/src/boot/me/type.ml @@ -46,11 +46,11 @@ let rec friendly_stringify cx fallback ty = String.concat " = " names else match ty with - Ast.TY_vec ty' -> "vec[" ^ (friendly_stringify cx fallback ty') ^ ")" + Ast.TY_vec ty' -> "vec[" ^ (friendly_stringify cx fallback ty') ^ "]" | Ast.TY_chan ty' -> - "chan[" ^ (friendly_stringify cx fallback ty') ^ ")" + "chan[" ^ (friendly_stringify cx fallback ty') ^ "]" | Ast.TY_port ty' -> - "port[" ^ (friendly_stringify cx fallback ty') ^ ")" + "port[" ^ (friendly_stringify cx fallback ty') ^ "]" | Ast.TY_box ty' -> "@" ^ (friendly_stringify cx fallback ty') | Ast.TY_mutable ty' -> "(mutable " ^ (friendly_stringify cx fallback ty') ^ ")" |