doc: fix double-word typos in comments

This commit is contained in:
bensig
2025-12-30 12:12:26 -08:00
parent 2bcb3f6464
commit 08ed802bab
5 changed files with 5 additions and 5 deletions

View File

@@ -1834,7 +1834,7 @@ void TxGraphImpl::GroupClusters(int level) noexcept
// Sort an_deps by applying the same order to the involved child cluster.
std::sort(an_deps.begin(), an_deps.end(), [&](auto& a, auto& b) noexcept { return a.second < b.second; });
// Run the union-find algorithm to to find partitions of the input Clusters which need to be
// Run the union-find algorithm to find partitions of the input Clusters which need to be
// grouped together. See https://en.wikipedia.org/wiki/Disjoint-set_data_structure.
{
/** Each PartitionData entry contains information about a single input Cluster. */