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:33:57 -0400
committerWho? Me?! <mark-i-m@users.noreply.github.com>2019-06-26 11:05:58 -0500
commit52e3d294239167354d9f2e1e7974485f44b2e77b (patch)
tree5efbf595b49cafa7a3dc5afcc76ce46c4917ffb3 /src/doc/rustc-dev-guide
parent94acf38fbb8a6e8bc2e07625be6eda72d3b88993 (diff)
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 95266a48627..3ec374b6688 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
@@ -206,7 +206,7 @@ compute its value by first computing the value of its
 successors. Since SCCs form a DAG, we don't have to be concerned about
 cycles, though we do need to keep a set around to track whether we
 have already processed a given SCC or not. For each successor `S2`, once
-we have computed S2's value, we can union those elements into the
+we have computed `S2`'s value, we can union those elements into the
 value for S1. (Although we have to be careful in this process to
 properly handle [higher-ranked
 placeholders](./placeholders_and_universes.html). Note that the value