summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorİsmail Arılık <arilik.ismail@gmail.com>2023-07-28 11:27:17 +0300
committerTshepang Mbambo <tshepang@gmail.com>2023-07-28 11:09:30 +0200
commit0b00d663e39b6d3d0296d689d1324a6db17ff8da (patch)
tree64cc7f836834fce8d91f11e875476851ea07cffd /src/doc/rustc-dev-guide
parent29ce9556acf77bb41fa9d38b0997977adea9f785 (diff)
downloadrust-0b00d663e39b6d3d0296d689d1324a6db17ff8da.tar.gz
rust-0b00d663e39b6d3d0296d689d1324a6db17ff8da.zip
fix(macro-expansion.md): fix the article `an` to `a` to have uninterrupted reading
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/macro-expansion.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/macro-expansion.md b/src/doc/rustc-dev-guide/src/macro-expansion.md
index 7f50f7f8986..f3883223d8f 100644
--- a/src/doc/rustc-dev-guide/src/macro-expansion.md
+++ b/src/doc/rustc-dev-guide/src/macro-expansion.md
@@ -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
 [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):
    1. [Resolve](./name-resolution.md) imports in our partially built crate as
       much as possible.