Skip to content

Commit 0a062b5

Browse files
committed
Remove trailing whitespace
1 parent 46df798 commit 0a062b5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/libstd/getopts.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,26 +31,26 @@
3131
* file name following -o, and accepts both -h and --help as optional flags.
3232
* extern mod std;
3333
* use std::getopts::*;
34-
*
34+
*
3535
* fn do_work(in: &str, out: Option<~str>) {
3636
* io::println(in);
3737
* io::println(match out {
3838
* Some(move x) => x,
3939
* None => ~"No Output"
4040
* });
4141
* }
42-
*
42+
*
4343
* fn print_usage(program: &str, _opts: &[std::getopts::Opt]) {
4444
* io::println(fmt!("Usage: %s [options]", program));
4545
* io::println("-o\t\tOutput");
4646
* io::println("-h --help\tUsage");
4747
* }
48-
*
48+
*
4949
* fn main() {
5050
* let args = os::args();
51-
*
51+
*
5252
* let program = copy args[0];
53-
*
53+
*
5454
* let opts = ~[
5555
* optopt("o"),
5656
* optflag("h"),

0 commit comments

Comments
 (0)