@@ -132,11 +132,11 @@ type ObligationTreeIdGenerator =
132
132
std:: iter:: Map < std:: ops:: RangeFrom < usize > , fn ( usize ) -> ObligationTreeId > ;
133
133
134
134
pub struct ObligationForest < O : ForestObligation > {
135
- /// The list of obligations. In between calls to ` process_obligations` ,
135
+ /// The list of obligations. In between calls to [Self:: process_obligations] ,
136
136
/// this list only contains nodes in the `Pending` or `Waiting` state.
137
137
///
138
138
/// `usize` indices are used here and throughout this module, rather than
139
- /// `rustc_index::newtype_index!` indices, because this code is hot enough
139
+ /// [ `rustc_index::newtype_index!`] indices, because this code is hot enough
140
140
/// that the `u32`-to-`usize` conversions that would be required are
141
141
/// significant, and space considerations are not important.
142
142
nodes : Vec < Node < O > > ,
@@ -146,10 +146,11 @@ pub struct ObligationForest<O: ForestObligation> {
146
146
147
147
/// A cache of the nodes in `nodes`, indexed by predicate. Unfortunately,
148
148
/// its contents are not guaranteed to match those of `nodes`. See the
149
- /// comments in ` process_obligation` for details.
149
+ /// comments in [`Self:: process_obligation` for details.
150
150
active_cache : FxHashMap < O :: CacheKey , usize > ,
151
151
152
- /// A vector reused in compress() and find_cycles_from_node(), to avoid allocating new vectors.
152
+ /// A vector reused in [Self::compress()] and [Self::find_cycles_from_node()],
153
+ /// to avoid allocating new vectors.
153
154
reused_node_vec : Vec < usize > ,
154
155
155
156
obligation_tree_id_generator : ObligationTreeIdGenerator ,
0 commit comments