about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/expr.rs
diff options
context:
space:
mode:
authorRobert Grosse <999674+Storyyeller@users.noreply.github.com>2020-10-27 14:23:58 -0700
committerGitHub <noreply@github.com>2020-10-27 14:23:58 -0700
commit710c1f4aca7a2f443190486946fabd4dd3333ec3 (patch)
tree0dab743a93cfd7082731426c8f756d15b3eaa190 /compiler/rustc_parse/src/parser/expr.rs
parent07e968b640e8ff76fa8be4b48b70ab80ea577800 (diff)
downloadrust-710c1f4aca7a2f443190486946fabd4dd3333ec3.tar.gz
rust-710c1f4aca7a2f443190486946fabd4dd3333ec3.zip
Fix typo in comments
Diffstat (limited to 'compiler/rustc_parse/src/parser/expr.rs')
-rw-r--r--compiler/rustc_parse/src/parser/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/expr.rs b/compiler/rustc_parse/src/parser/expr.rs
index 5994eda966f..c2a13d4b0de 100644
--- a/compiler/rustc_parse/src/parser/expr.rs
+++ b/compiler/rustc_parse/src/parser/expr.rs
@@ -831,7 +831,7 @@ impl<'a> Parser<'a> {
         self.struct_span_err(self.token.span, &format!("unexpected token: `{}`", actual)).emit();
     }
 
-    // We need and identifier or integer, but the next token is a float.
+    // We need an identifier or integer, but the next token is a float.
     // Break the float into components to extract the identifier or integer.
     // FIXME: With current `TokenCursor` it's hard to break tokens into more than 2
     // parts unless those parts are processed immediately. `TokenCursor` should either