syntax: Fix semicolon printing. Closes #3036

This commit is contained in:
Brian Anderson 2012-07-30 16:09:42 -07:00
parent 416584d339
commit ef29f7ff36
2 changed files with 7 additions and 1 deletions

View file

@ -136,7 +136,7 @@ fn to_str(in: interner<@~str>, t: token) -> ~str {
DOT { ~"." }
ELLIPSIS { ~"..." }
COMMA { ~"," }
SEMI { ~"" }
SEMI { ~";" }
COLON { ~":" }
MOD_SEP { ~"::" }
RARROW { ~"->" }