Wrap link in borrow_check.md to satify line length checks

This commit is contained in:
Paul Daniel Faria 2020-04-03 18:18:32 -04:00 committed by Who? Me?!
parent ef8048d986
commit fa8048117c
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ the [`mir_borrowck`] query.
we will modify this copy in place to modify the types and things to we will modify this copy in place to modify the types and things to
include references to the new regions that we are computing. include references to the new regions that we are computing.
- We then invoke [`replace_regions_in_mir`] to modify our local MIR. - 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 Among other things, this function will replace all of the [regions](./appendix/glossary.md#region)
the MIR with fresh [inference variables](./appendix/glossary.md#inf-var). in the MIR with fresh [inference variables](./appendix/glossary.md#inf-var).
- Next, we perform a number of - Next, we perform a number of
[dataflow analyses](./appendix/background.md#dataflow) that [dataflow analyses](./appendix/background.md#dataflow) that
compute what data is moved and when. compute what data is moved and when.