about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorStan Manilov <stanislav.manilov@gmail.com>2025-05-08 14:39:30 +0300
committerStan Manilov <stanislav.manilov@gmail.com>2025-05-09 15:50:49 +0300
commit30526830bbf403bd20b4f354557f2f822cf4d227 (patch)
tree9ad720889228c58664e5a532d0bd6b1fbe44d7ab /src/doc/rustc-dev-guide
parentf31bf4a94e5670570f19efbcd577a3632129cc68 (diff)
downloadrust-30526830bbf403bd20b4f354557f2f822cf4d227.tar.gz
rust-30526830bbf403bd20b4f354557f2f822cf4d227.zip
Fix minor typo in rustdoc-internals.md
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/rustdoc-internals.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/rustdoc-internals.md b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
index 7f1c83e00f9..80421b85bf0 100644
--- a/src/doc/rustc-dev-guide/src/rustdoc-internals.md
+++ b/src/doc/rustc-dev-guide/src/rustdoc-internals.md
@@ -55,8 +55,8 @@ The first step in [`clean::utils::krate`][ck1] is to invoke
   * inlining public `use` exports of private items, or showing a "Reexport"
     line in the module page
   * inlining items with `#[doc(hidden)]` if the base item is hidden but the
-  * showing `#[macro_export]`-ed macros at the crate root, regardless of where
-    they're defined reexport is not
+  * showing `#[macro_export]`-ed macros at the crate root, regardless of whether
+    they're defined as a reexport or not
 
 After this step, `clean::krate` invokes [`clean_doc_module`], which actually
 converts the `HIR` items to the cleaned [`AST`][ast]. This is also the step where cross-