about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2015-01-24 22:15:08 +0200
committerEduard Burtescu <edy.burt@gmail.com>2015-01-26 04:15:09 +0200
commit9690be5ece5960d0bd8ecb68750b577b0835b6ba (patch)
treedf529121026e676c75385f1f12019592709b24c0 /src/libsyntax/parse
parente0afa82c67813f6ddb0526e130c1524cf52c61e7 (diff)
downloadrust-9690be5ece5960d0bd8ecb68750b577b0835b6ba.tar.gz
rust-9690be5ece5960d0bd8ecb68750b577b0835b6ba.zip
Adjust most comments and messages to not use "unboxed".
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 37f95bffe27..eab24574bb1 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -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)) &&