diff options
| author | pierwill <pierwill@users.noreply.github.com> | 2021-04-07 14:47:01 -0500 |
|---|---|---|
| committer | pierwill <pierwill@users.noreply.github.com> | 2021-04-08 11:12:14 -0500 |
| commit | 0019ca9141d0e397534df87a6a7c4c7ece2646d7 (patch) | |
| tree | adfd5610650d2d998dceba4d5a7b461e7f136cb3 /compiler/rustc_data_structures | |
| parent | b01026de465d5a5ef51e32c1012c43927d2a111c (diff) | |
| download | rust-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_data_structures')
| -rw-r--r-- | compiler/rustc_data_structures/src/svh.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/svh.rs b/compiler/rustc_data_structures/src/svh.rs index 02103de2e8d..ce90fbacaa4 100644 --- a/compiler/rustc_data_structures/src/svh.rs +++ b/compiler/rustc_data_structures/src/svh.rs @@ -19,7 +19,7 @@ pub struct Svh { impl Svh { /// Creates a new `Svh` given the hash. If you actually want to /// compute the SVH from some HIR, you want the `calculate_svh` - /// function found in `librustc_incremental`. + /// function found in `rustc_incremental`. pub fn new(hash: u64) -> Svh { Svh { hash } } |
