fix cat example

This commit is contained in:
Andrew Kelley 2016-01-16 03:31:43 -07:00
parent 9e74b7e754
commit 826c7f06a3

View File

@ -29,7 +29,7 @@ pub fn main(args: [][]u8) error => {
}
fn usage(exe: []u8) error => {
stderr.print("Usage: {} [FILE]...\n");
stderr.print("Usage: {} [FILE]...\n", exe);
return error.Invalid;
}