diff options
| author | Patrick Walton <[email protected]> | 2011-03-15 15:07:41 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-03-15 15:07:41 -0700 |
| commit | bb081d661161f7b68a85a828a998b63bbf6cfd13 (patch) | |
| tree | 4e05f32937396d19d5f0569b18f6799f7d3d63f9 /src/comp | |
| parent | rustc: Add support for LLVM memory buffer creation via a wrapper function (diff) | |
| download | rust-bb081d661161f7b68a85a828a998b63bbf6cfd13.tar.xz rust-bb081d661161f7b68a85a828a998b63bbf6cfd13.zip | |
rustc: Typo: "unput" -> "input"
Diffstat (limited to 'src/comp')
| -rw-r--r-- | src/comp/driver/rustc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/driver/rustc.rs b/src/comp/driver/rustc.rs index ed61b340..51151742 100644 --- a/src/comp/driver/rustc.rs +++ b/src/comp/driver/rustc.rs @@ -46,7 +46,7 @@ impure fn parse_input(session.session sess, } else if (_str.ends_with(input, ".rs")) { ret parser.parse_crate_from_source_file(p); } - sess.err("unknown unput file type: " + input); + sess.err("unknown input file type: " + input); fail; } |