1
Fork 0

Rollup merge of #110153 - DaniPopes:compiler-typos, r=Nilstrieb

Fix typos in compiler

I ran [`typos -w compiler`](https://github.com/crate-ci/typos) to fix typos in the `compiler` directory.

Refs #110150
This commit is contained in:
Matthias Krüger 2023-04-12 20:56:21 +02:00 committed by GitHub
commit 331e7c3659
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
70 changed files with 138 additions and 136 deletions

View file

@ -42,7 +42,7 @@ struct MacroInput {
fmtstr: P<Expr>,
args: FormatArguments,
/// Whether the first argument was a string literal or a result from eager macro expansion.
/// If it's not a string literal, we disallow implicit arugment capturing.
/// If it's not a string literal, we disallow implicit argument capturing.
///
/// This does not correspond to whether we can treat spans to the literal normally, as the whole
/// invocation might be the result of another macro expansion, in which case this flag may still be true.