diff --git a/src/librustc_data_structures/graph/scc/mod.rs b/src/librustc_data_structures/graph/scc/mod.rs index 64471230f55ad..82755ef5ce563 100644 --- a/src/librustc_data_structures/graph/scc/mod.rs +++ b/src/librustc_data_structures/graph/scc/mod.rs @@ -122,8 +122,8 @@ struct SccsConstruction<'c, G: DirectedGraph + WithNumNodes + WithSuccessors + ' /// A set used to strip duplicates. As we accumulate successors /// into the successors_stack, we sometimes get duplicate entries. - /// We use this set to remove those -- we keep it around between - /// successors to amortize memory allocation costs. + /// We use this set to remove those -- we also keep its storage + /// around between successors to amortize memory allocation costs. duplicate_set: FxHashSet, scc_data: SccData,