File tree 1 file changed +2
-2
lines changed
src/borrow_check/region_inference
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ much faster, as described shortly.
100
100
101
101
In the code, the set of outlives constraints is given to the region
102
102
inference context on creation in a parameter of type
103
- [ ` ConstraintSet ` ] . The constraint set is basically just a list of `'a:
103
+ [ ` OutlivesConstraintSet ` ] . The constraint set is basically just a list of `'a:
104
104
'b` constraints.
105
105
106
106
### The outlives constraint graph and SCCs
@@ -112,7 +112,7 @@ induces an edge `'a -> 'b`. This conversion happens in the
112
112
[ ` RegionInferenceContext::new ` ] function that creates the inference
113
113
context.
114
114
115
- [ `ConstraintSet ` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/constraints/struct.OutlivesConstraintSet.html
115
+ [ `OutlivesConstraintSet ` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/constraints/struct.OutlivesConstraintSet.html
116
116
[ graph-fn ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/constraints/struct.OutlivesConstraintSet.html#method.graph
117
117
[ `RegionInferenceContext::new` ] : https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/region_infer/struct.RegionInferenceContext.html#method.new
118
118
You can’t perform that action at this time.
0 commit comments