typo
This commit is contained in:
parent
33b342e891
commit
7fdb6437d8
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ impure fn parse_ty(parser p) -> @ast.ty {
|
|||
alt (p.peek()) {
|
||||
case (token.BOOL) { p.bump(); t = ast.ty_bool; }
|
||||
case (token.INT) { p.bump(); t = ast.ty_int; }
|
||||
case (token.UINT) { p.bump(); t = ast.ty_int; }
|
||||
case (token.UINT) { p.bump(); t = ast.ty_uint; }
|
||||
case (token.STR) { p.bump(); t = ast.ty_str; }
|
||||
case (token.CHAR) { p.bump(); t = ast.ty_char; }
|
||||
case (token.MACH(?tm)) { p.bump(); t = ast.ty_machine(tm); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue