Skip to content

Commit

Permalink
Fix comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
dim-an committed Jul 30, 2013
1 parent ed0f014 commit ef7e945
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/libextra/getopts.rs
Expand Up @@ -140,7 +140,9 @@ pub fn optflag(name: &str) -> Opt {
return Opt {name: mkname(name), hasarg: No, occur: Optional};
}

/// Create an option that is optional and does not take an argument
/** Create an option that is optional, does not take an argument,
* and may occur multiple times.
*/
pub fn optflagmulti(name: &str) -> Opt {
return Opt {name: mkname(name), hasarg: No, occur: Multi};
}
Expand Down

5 comments on commit ef7e945

@bors
Copy link
Contributor

@bors bors commented on ef7e945 Jul 31, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on ef7e945 Jul 31, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging dim-an/rust/master = ef7e945 into auto

@bors
Copy link
Contributor

@bors bors commented on ef7e945 Jul 31, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dim-an/rust/master = ef7e945 merged ok, testing candidate = 4fbd37d

@bors
Copy link
Contributor

@bors bors commented on ef7e945 Jul 31, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 4fbd37d

Please sign in to comment.