Skip to content

Commit 03086c5

Browse files
committed
rustc: "unkown" -> "unknown"
1 parent b86c603 commit 03086c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rustc/syntax/parse/lexer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ fn next_token_inner(rdr: reader) -> token::token {
537537
'/' { ret binop(rdr, token::SLASH); }
538538
'^' { ret binop(rdr, token::CARET); }
539539
'%' { ret binop(rdr, token::PERCENT); }
540-
c { rdr.fatal(#fmt["unkown start of token: %d", c as int]); }
540+
c { rdr.fatal(#fmt["unknown start of token: %d", c as int]); }
541541
}
542542
}
543543

0 commit comments

Comments
 (0)