]> git.lizzy.rs Git - rust.git/commitdiff
parser.rs: fix typos in comments
authorCarlo Teubner <carlo.teubner@gmail.com>
Wed, 18 May 2016 21:42:15 +0000 (22:42 +0100)
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>
Wed, 25 May 2016 20:02:20 +0000 (20:02 +0000)
src/libsyntax/parse/parser.rs

index fc62cee92fdbc5948b2dec120236b7125c927129..3a28632f07a7e55ec7953d250dc4c803debd0e62 100644 (file)
@@ -2807,14 +2807,14 @@ pub fn parse_token_tree(&mut self) -> PResult<'a, TokenTree> {
                 let span = Span { hi: close_span.hi, ..pre_span };
 
                 match self.token {
-                    // Correct delmiter.
+                    // Correct delimiter.
                     token::CloseDelim(d) if d == delim => {
                         self.open_braces.pop().unwrap();
 
                         // Parse the close delimiter.
                         self.bump();
                     }
-                    // Incorect delimiter.
+                    // Incorrect delimiter.
                     token::CloseDelim(other) => {
                         let token_str = self.this_token_to_string();
                         let mut err = self.diagnostic().struct_span_err(self.span,
@@ -2829,9 +2829,9 @@ pub fn parse_token_tree(&mut self) -> PResult<'a, TokenTree> {
 
                         self.open_braces.pop().unwrap();
 
-                        // If the incorrect delimter matches an earlier opening
+                        // If the incorrect delimiter matches an earlier opening
                         // delimiter, then don't consume it (it can be used to
-                        // close the earlier one)Otherwise, consume it.
+                        // close the earlier one)Otherwise, consume it.
                         // E.g., we try to recover from:
                         // fn foo() {
                         //     bar(baz(
@@ -2859,7 +2859,7 @@ pub fn parse_token_tree(&mut self) -> PResult<'a, TokenTree> {
                 // invariants: the current token is not a left-delimiter,
                 // not an EOF, and not the desired right-delimiter (if
                 // it were, parse_seq_to_before_end would have prevented
-                // reaching this point.
+                // reaching this point).
                 maybe_whole!(deref self, NtTT);
                 match self.token {
                     token::CloseDelim(_) => {