From 9a67713d9938aa429e0bf73458b28be16f50a4bb Mon Sep 17 00:00:00 2001 From: Dan Mezhiborsky Date: Sun, 25 Dec 2022 07:11:21 -0500 Subject: [PATCH] Fix rustc_borrowck crate name typo (#1535) --- src/borrow_check.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borrow_check.md b/src/borrow_check.md index 8e2bb752..f206da42 100644 --- a/src/borrow_check.md +++ b/src/borrow_check.md @@ -27,7 +27,7 @@ HIR. Doing borrow checking on MIR has several advantages: ### Major phases of the borrow checker The borrow checker source is found in -[the `rustc_borrow_ck` crate][b_c]. The main entry point is +[the `rustc_borrowck` crate][b_c]. The main entry point is the [`mir_borrowck`] query. [b_c]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_borrowck/index.html