about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorPaul Daniel Faria <nashenas88@users.noreply.github.com>2020-04-03 18:18:32 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-04-05 12:46:22 -0500
commita28c76128608727fa28ce8ff58bbe1d473fe7cd1 (patch)
tree2deecef55b1deb45b121219b2c3aee7876d87fd9 /src/doc/rustc-dev-guide
parentec045377ca95046c60e36c3328c6fd9c0037285b (diff)
downloadrust-a28c76128608727fa28ce8ff58bbe1d473fe7cd1.tar.gz
rust-a28c76128608727fa28ce8ff58bbe1d473fe7cd1.zip
Wrap link in borrow_check.md to satify line length checks
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/borrow_check.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/src/borrow_check.md b/src/doc/rustc-dev-guide/src/borrow_check.md
index eea56e1c37a..7e076edf37f 100644
--- a/src/doc/rustc-dev-guide/src/borrow_check.md
+++ b/src/doc/rustc-dev-guide/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.