From 5c24d9a9aaa0dd4f2cd3b755ffc34d210b839b39 Mon Sep 17 00:00:00 2001 From: Aayush Vyas <70998175+AayushVyasKIIT@users.noreply.github.com> Date: Fri, 8 Oct 2021 12:13:55 +0530 Subject: [PATCH] Update data_structures/dsu_union_rank.cpp Co-authored-by: David Leal --- data_structures/dsu_union_rank.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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