File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/librustc/infer/region_constraints Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -153,19 +153,19 @@ impl Constraint<'_> {
153
153
/// ```
154
154
#[ derive( Debug , Clone , HashStable ) ]
155
155
pub struct MemberConstraint < ' tcx > {
156
- /// the def-id of the opaque type causing this constraint: used for error reporting
156
+ /// The `DefId` of the opaque type causing this constraint: used for error reporting.
157
157
pub opaque_type_def_id : DefId ,
158
158
159
- /// the span where the hidden type was instantiated
159
+ /// The span where the hidden type was instantiated.
160
160
pub definition_span : Span ,
161
161
162
- /// the hidden type in which `member_region` appears: used for error reporting
162
+ /// The hidden type in which `member_region` appears: used for error reporting.
163
163
pub hidden_ty : Ty < ' tcx > ,
164
164
165
- /// the region R0
165
+ /// The region `R0`.
166
166
pub member_region : Region < ' tcx > ,
167
167
168
- /// the options O1..On
168
+ /// The options ` O1..On`.
169
169
pub choice_regions : Lrc < Vec < Region < ' tcx > > > ,
170
170
}
171
171
You can’t perform that action at this time.
0 commit comments