about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2019-06-24 14:32:53 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-06-26 11:05:58 -0500
commita8b5b2176576b0e9835b6b4117294db7e2c193d2 (patch)
treea899766757e4c9603fc9de934c43b6825bbb3e5e /src/doc/rustc-dev-guide
parent66a57fc7f324afa193572c04379d7b839dd6078c (diff)
downloadrust-a8b5b2176576b0e9835b6b4117294db7e2c193d2.tar.gz
rust-a8b5b2176576b0e9835b6b4117294db7e2c193d2.zip
Update src/borrow_check/region_inference/constraint_propagation.md
Co-Authored-By: lqd <remy.rakic+github@gmail.com>
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/borrow_check/region_inference/constraint_propagation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/borrow_check/region_inference/constraint_propagation.md b/src/doc/rustc-dev-guide/src/borrow_check/region_inference/constraint_propagation.md
index e2c36062fdb..385e04892ae 100644
--- a/src/doc/rustc-dev-guide/src/borrow_check/region_inference/constraint_propagation.md
+++ b/src/doc/rustc-dev-guide/src/borrow_check/region_inference/constraint_propagation.md
@@ -178,7 +178,7 @@ easily just by taking the union:
 
 ```
 for each region R:
-  let S by the SCC that contains R
+  let S be the SCC that contains R
   Values(S) = Values(S) union Liveness(R)
 ```