From 875af5b8f804ab0bfec77a56787e7767533110a1 Mon Sep 17 00:00:00 2001 From: mdinger Date: Sat, 27 Dec 2014 22:07:56 -0500 Subject: [PATCH] `man rustc` and `rustc --help` say options go first --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 22cbd18a865..ca0f250a3cc 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -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}