about summary refs log tree commit diff
path: root/compiler/rustc_codegen_cranelift
diff options
context:
space:
mode:
authorpierwill <pierwill@users.noreply.github.com>2021-04-07 14:47:01 -0500
committerpierwill <pierwill@users.noreply.github.com>2021-04-08 11:12:14 -0500
commit0019ca9141d0e397534df87a6a7c4c7ece2646d7 (patch)
treeadfd5610650d2d998dceba4d5a7b461e7f136cb3 /compiler/rustc_codegen_cranelift
parentb01026de465d5a5ef51e32c1012c43927d2a111c (diff)
downloadrust-0019ca9141d0e397534df87a6a7c4c7ece2646d7.tar.gz
rust-0019ca9141d0e397534df87a6a7c4c7ece2646d7.zip
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.
Diffstat (limited to 'compiler/rustc_codegen_cranelift')
-rw-r--r--compiler/rustc_codegen_cranelift/src/vtable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/vtable.rs b/compiler/rustc_codegen_cranelift/src/vtable.rs
index 4d2551a061b..9053d1aa1b0 100644
--- a/compiler/rustc_codegen_cranelift/src/vtable.rs
+++ b/compiler/rustc_codegen_cranelift/src/vtable.rs
@@ -1,6 +1,6 @@
 //! Codegen vtables and vtable accesses.
 //!
-//! See librustc_codegen_llvm/meth.rs for reference
+//! See `rustc_codegen_ssa/src/meth.rs` for reference.
 // FIXME dedup this logic between miri, cg_llvm and cg_clif
 
 use crate::prelude::*;