From ec46a7707ca016e2c127f76a4d9133433611f357 Mon Sep 17 00:00:00 2001 From: Dan Mezhiborsky <54985569+dmezh@users.noreply.github.com> Date: Sun, 25 Dec 2022 04:03:52 -0500 Subject: [PATCH] Fix rustc_borrowck crate name typo --- 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 8e2bb752a..f206da42a 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