diff options
| author | Matthew McPherrin <matthew@mcpherrin.ca> | 2013-02-08 20:17:50 -0500 |
|---|---|---|
| committer | Matthew McPherrin <matthew@mcpherrin.ca> | 2013-02-08 20:17:50 -0500 |
| commit | 0a062b50f11ffba17675912cf9ea475fdbdfa0f5 (patch) | |
| tree | be8a9c32de8bcf1610fc73ee3a81bf8c661dd930 | |
| parent | 46df7985a5f3e1e1a50d0f5f81f32bb1e4be8967 (diff) | |
| download | rust-0a062b50f11ffba17675912cf9ea475fdbdfa0f5.tar.gz rust-0a062b50f11ffba17675912cf9ea475fdbdfa0f5.zip | |
Remove trailing whitespace
| -rw-r--r-- | src/libstd/getopts.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstd/getopts.rs b/src/libstd/getopts.rs index e34574a2e15..a778649f6f4 100644 --- a/src/libstd/getopts.rs +++ b/src/libstd/getopts.rs @@ -31,7 +31,7 @@ * file name following -o, and accepts both -h and --help as optional flags. * extern mod std; * use std::getopts::*; - * + * * fn do_work(in: &str, out: Option<~str>) { * io::println(in); * io::println(match out { @@ -39,18 +39,18 @@ * None => ~"No Output" * }); * } - * + * * fn print_usage(program: &str, _opts: &[std::getopts::Opt]) { * io::println(fmt!("Usage: %s [options]", program)); * io::println("-o\t\tOutput"); * io::println("-h --help\tUsage"); * } - * + * * fn main() { * let args = os::args(); - * + * * let program = copy args[0]; - * + * * let opts = ~[ * optopt("o"), * optflag("h"), |
