about summary refs log tree commit diff
path: root/compiler/rustc_ast_lowering/src
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2021-04-08 20:29:58 +0200
committerGitHub <noreply@github.com>2021-04-08 20:29:58 +0200
commit74b23f9d112b6846743e7aa3ce46acb59592d4ce (patch)
treea23e402b65f45a1eb5c8e59645fb102fe6907920 /compiler/rustc_ast_lowering/src
parent461297e3fdd1eca380ed771386fa7faf8b976998 (diff)
parent0019ca9141d0e397534df87a6a7c4c7ece2646d7 (diff)
downloadrust-74b23f9d112b6846743e7aa3ce46acb59592d4ce.tar.gz
rust-74b23f9d112b6846743e7aa3ce46acb59592d4ce.zip
Rollup merge of #83980 - pierwill:fix-compiler-librustc-names, r=davidtwco
Fix outdated crate names in compiler docs

Changes `librustc_X` to `rustc_X`, only in documentation comments.
Plain code comments are left unchanged.
Diffstat (limited to 'compiler/rustc_ast_lowering/src')
-rw-r--r--compiler/rustc_ast_lowering/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast_lowering/src/lib.rs b/compiler/rustc_ast_lowering/src/lib.rs
index be56f97af8a..cd5d116964f 100644
--- a/compiler/rustc_ast_lowering/src/lib.rs
+++ b/compiler/rustc_ast_lowering/src/lib.rs
@@ -93,7 +93,7 @@ struct LoweringContext<'a, 'hir: 'a> {
 
     /// HACK(Centril): there is a cyclic dependency between the parser and lowering
     /// if we don't have this function pointer. To avoid that dependency so that
-    /// librustc_middle is independent of the parser, we use dynamic dispatch here.
+    /// `rustc_middle` is independent of the parser, we use dynamic dispatch here.
     nt_to_tokenstream: NtToTokenstream,
 
     /// Used to allocate HIR nodes.