Adjust most comments and messages to not use "unboxed".

This commit is contained in:
Eduard Burtescu 2015-01-24 22:15:08 +02:00
parent e0afa82c67
commit 9690be5ece
15 changed files with 36 additions and 44 deletions

View file

@ -1133,7 +1133,7 @@ impl<'a> Parser<'a> {
TyInfer
}
/// Parses an optional unboxed closure kind (`&:`, `&mut:`, or `:`).
/// Parses an optional closure kind (`&:`, `&mut:`, or `:`).
pub fn parse_optional_closure_kind(&mut self) -> Option<ClosureKind> {
if self.check(&token::BinOp(token::And)) &&
self.look_ahead(1, |t| t.is_keyword(keywords::Mut)) &&