diff options
| author | Kevin Cantu <me@kevincantu.org> | 2012-10-10 15:45:33 -0700 |
|---|---|---|
| committer | Kevin Cantu <me@kevincantu.org> | 2012-10-10 16:38:58 -0700 |
| commit | c419e77cc12f0eae2e07097c2deb9a51238bb303 (patch) | |
| tree | 6a28e7fc205ba5d0cad35f78580b95a54e0f3a08 | |
| parent | 194d3786a7a03fa516057e446fc87cbb213d39d5 (diff) | |
| download | rust-c419e77cc12f0eae2e07097c2deb9a51238bb303.tar.gz rust-c419e77cc12f0eae2e07097c2deb9a51238bb303.zip | |
Touchup the debug flag description printing
| -rw-r--r-- | src/rustc/driver/rustc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustc/driver/rustc.rs b/src/rustc/driver/rustc.rs index c60904419d5..0f191c263fc 100644 --- a/src/rustc/driver/rustc.rs +++ b/src/rustc/driver/rustc.rs @@ -113,7 +113,7 @@ fn describe_debug_flags() { io::println(fmt!("\nAvailable debug options:\n")); for session::debugging_opts_map().each |pair| { let (name, desc, _) = *pair; - io::println(fmt!(" -Z%-20s -- %s", name, desc)); + io::println(fmt!(" -Z %-20s -- %s", name, desc)); } } |
