about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpierwill <19642016+pierwill@users.noreply.github.com>2020-12-19 23:32:51 -0800
committerGitHub <noreply@github.com>2020-12-19 23:32:51 -0800
commit51d1806545e0047776c1fdd5fbcbcd39a58575d5 (patch)
treef6e17550ab8d7a1d439dd81d4ab9c6d95320fbfe
parent29e32120c33d30ff526fc7f4d94ec9fce0dc10c9 (diff)
downloadrust-51d1806545e0047776c1fdd5fbcbcd39a58575d5.tar.gz
rust-51d1806545e0047776c1fdd5fbcbcd39a58575d5.zip
docs: Fix outdated crate reference
-rw-r--r--compiler/rustc_middle/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/lib.rs b/compiler/rustc_middle/src/lib.rs
index cdc5940d9ba..6ae83a7f667 100644
--- a/compiler/rustc_middle/src/lib.rs
+++ b/compiler/rustc_middle/src/lib.rs
@@ -8,7 +8,7 @@
 //! - **MIR.** The "mid-level (M) intermediate representation (IR)" is
 //!   defined in the `mir` module. This module contains only the
 //!   *definition* of the MIR; the passes that transform and operate
-//!   on MIR are found in `librustc_mir` crate.
+//!   on MIR are found in `rustc_mir` crate.
 //! - **Types.** The internal representation of types used in rustc is
 //!   defined in the `ty` module. This includes the **type context**
 //!   (or `tcx`), which is the central context during most of