Rollup merge of #78798 - ankushduacodes:fixing-typo, r=jonas-schievink

Fixing Spelling Typos

Fixing #78787
This commit is contained in:
Yuki Okushi 2020-11-07 01:02:30 +09:00 committed by GitHub
commit af50c796fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -8,7 +8,7 @@ help: include the missing field in the pattern
|
LL | Dog { age: x, name } => {}
| ^^^^^^
help: if you don't care about this missing field, you can explicitely ignore it
help: if you don't care about this missing field, you can explicitly ignore it
|
LL | Dog { age: x, .. } => {}
| ^^^^
@ -23,7 +23,7 @@ help: include the missing fields in the pattern
|
LL | Dog { name, age } => {}
| ^^^^^^^^^^^^^
help: if you don't care about these missing fields, you can explicitely ignore them
help: if you don't care about these missing fields, you can explicitly ignore them
|
LL | Dog { .. } => {}
| ^^^^^^

View file

@ -22,7 +22,7 @@ help: include the missing field in the pattern
|
LL | let Foo { present } = foo;
| ^^^^^^^^^^^
help: if you don't care about this missing field, you can explicitely ignore it
help: if you don't care about this missing field, you can explicitly ignore it
|
LL | let Foo { .. } = foo;
| ^^^^^^

View file

@ -20,7 +20,7 @@ help: include the missing fields in the pattern
|
LL | let A { x, y, b, c } = self.d;
| ^^^^^^
help: if you don't care about these missing fields, you can explicitely ignore them
help: if you don't care about these missing fields, you can explicitly ignore them
|
LL | let A { x, y, .. } = self.d;
| ^^^^