`man rustc` and `rustc --help` say options go first

This commit is contained in:
mdinger 2014-12-27 22:07:56 -05:00
parent 070ab63807
commit 875af5b8f8
1 changed files with 1 additions and 1 deletions

View File

@ -5410,7 +5410,7 @@ fn main() {
}
```
You can have the macros expanded like this: `rustc print.rs --pretty=expanded`, which will
You can have the macros expanded like this: `rustc --pretty=expanded print.rs`, which will
give us this huge result:
```{rust,ignore}