1
Fork 0

Fix misspelled comments.

This commit is contained in:
Joseph Crail 2014-08-01 19:40:21 -04:00
parent 292caefb26
commit ad06dfe496
22 changed files with 29 additions and 29 deletions

View file

@ -4356,7 +4356,7 @@ impl<'a> Parser<'a> {
return self.parse_single_struct_field(Inherited, attrs);
}
/// Parse visiility: PUB, PRIV, or nothing
/// Parse visibility: PUB, PRIV, or nothing
fn parse_visibility(&mut self) -> Visibility {
if self.eat_keyword(keywords::Pub) { Public }
else { Inherited }