Rename ty_istr to ty_str. Issue #855

This commit is contained in:
Brian Anderson 2011-09-02 16:45:00 -07:00
parent 6217ce958e
commit f1555e2ca8
14 changed files with 35 additions and 35 deletions

View file

@ -107,7 +107,7 @@ fn ty_to_str(cx: &ctxt, typ: &t) -> str {
ty_uint. { "uint" }
ty_machine(tm) { ty_mach_to_str(tm) }
ty_char. { "char" }
ty_istr. { "str" }
ty_str. { "str" }
ty_box(tm) { "@" + mt_to_str(cx, tm) }
ty_uniq(t) { "~" + ty_to_str(cx, t) }
ty_vec(tm) { "[" + mt_to_str(cx, tm) + "]" }