1
Fork 0

Fix outdated crate names in compiler docs

Changes `librustc_X` to `rustc_X`, only in documentation comments.
Plain code comments are left unchanged.

Also fix incorrect file paths.
This commit is contained in:
pierwill 2021-04-07 14:47:01 -05:00
parent b01026de46
commit 0019ca9141
23 changed files with 27 additions and 27 deletions

View file

@ -1,4 +1,4 @@
`librustc_target` contains some very low-level details that are
`rustc_target` contains some very low-level details that are
specific to different compilation targets and so forth.
For more information about how rustc works, see the [rustc dev guide].

View file

@ -28,5 +28,5 @@ pub mod spec;
/// Requirements for a `StableHashingContext` to be used in this crate.
/// This is a hack to allow using the `HashStable_Generic` derive macro
/// instead of implementing everything in librustc_middle.
/// instead of implementing everything in `rustc_middle`.
pub trait HashStableContext {}