From fa8048117c1851f53da47c70759cde31053a80c4 Mon Sep 17 00:00:00 2001 From: Paul Daniel Faria Date: Fri, 3 Apr 2020 18:18:32 -0400 Subject: [PATCH] Wrap link in borrow_check.md to satify line length checks --- src/borrow_check.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/borrow_check.md b/src/borrow_check.md index eea56e1c..7e076edf 100644 --- a/src/borrow_check.md +++ b/src/borrow_check.md @@ -37,8 +37,8 @@ the [`mir_borrowck`] query. we will modify this copy in place to modify the types and things to include references to the new regions that we are computing. - We then invoke [`replace_regions_in_mir`] to modify our local MIR. - Among other things, this function will replace all of the [regions](./appendix/glossary.md#region) in - the MIR with fresh [inference variables](./appendix/glossary.md#inf-var). + Among other things, this function will replace all of the [regions](./appendix/glossary.md#region) + in the MIR with fresh [inference variables](./appendix/glossary.md#inf-var). - Next, we perform a number of [dataflow analyses](./appendix/background.md#dataflow) that compute what data is moved and when.