about summary refs log tree commit diff
path: root/compiler/rustc_resolve/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_resolve/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_resolve/src')
-rw-r--r--compiler/rustc_resolve/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_resolve/src/lib.rs b/compiler/rustc_resolve/src/lib.rs
index 1c5f8996e1b..3fdd47e1ecb 100644
--- a/compiler/rustc_resolve/src/lib.rs
+++ b/compiler/rustc_resolve/src/lib.rs
@@ -6,7 +6,7 @@
 //! Paths in macros, imports, expressions, types, patterns are resolved here.
 //! Label and lifetime names are resolved here as well.
 //!
-//! Type-relative name resolution (methods, fields, associated items) happens in `librustc_typeck`.
+//! Type-relative name resolution (methods, fields, associated items) happens in `rustc_typeck`.
 
 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
 #![feature(box_patterns)]