diff --git a/data_structures/dsu_union_rank.cpp b/data_structures/dsu_union_rank.cpp index c1f317960..190191328 100644 --- a/data_structures/dsu_union_rank.cpp +++ b/data_structures/dsu_union_rank.cpp @@ -155,7 +155,7 @@ static void test1() { * @returns void */ static void test2() { - /* checks the parents in the resultant structures */ + // checks the parents in the resultant structures uint64_t n = 10; ///< number of elements dsu d(n + 1); ///< object of class disjoint sets d.unionSet(2, 1); /// performs union operation on 1 and 2