Auto merge of #84334 - klensy:typo-compiler, r=jyn514

fix few typos in comments
This commit is contained in:
bors 2021-04-20 00:16:45 +00:00
commit e888a57da8
32 changed files with 39 additions and 39 deletions

View file

@ -1346,7 +1346,7 @@ pub enum ExprKind {
Field(P<Expr>, Ident),
/// An indexing operation (e.g., `foo[2]`).
Index(P<Expr>, P<Expr>),
/// A range (e.g., `1..2`, `1..`, `..2`, `1..=2`, `..=2`; and `..` in destructuring assingment).
/// A range (e.g., `1..2`, `1..`, `..2`, `1..=2`, `..=2`; and `..` in destructuring assignment).
Range(Option<P<Expr>>, Option<P<Expr>>, RangeLimits),
/// An underscore, used in destructuring assignment to ignore a value.
Underscore,