fix(macro-expansion.md): fix the article `an` to `a` to have uninterrupted reading

This commit is contained in:
İsmail Arılık 2023-07-28 11:27:17 +03:00 committed by Tshepang Mbambo
parent c3141f6cf5
commit 0f86bd1480
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ iteration, this represents a compile error. Here is the [algorithm][original]:
[fef]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/expand/struct.MacroExpander.html#method.fully_expand_fragment [fef]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/expand/struct.MacroExpander.html#method.fully_expand_fragment
[original]: https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049 [original]: https://github.com/rust-lang/rust/pull/53778#issuecomment-419224049
1. Initialize an `queue` of unresolved macros. 1. Initialize a `queue` of unresolved macros.
2. Repeat until `queue` is empty (or we make no progress, which is an error): 2. Repeat until `queue` is empty (or we make no progress, which is an error):
1. [Resolve](./name-resolution.md) imports in our partially built crate as 1. [Resolve](./name-resolution.md) imports in our partially built crate as
much as possible. much as possible.