From e53b31f4e98620439f401bf1b21339dd06534dc1 Mon Sep 17 00:00:00 2001 From: Aayush Vyas <70998175+AayushVyasKIIT@users.noreply.github.com> Date: Sat, 4 Sep 2021 08:25:48 +0530 Subject: [PATCH] Update data_structures/dsu_path_compression.cpp Co-authored-by: David Leal --- data_structures/dsu_path_compression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/dsu_path_compression.cpp b/data_structures/dsu_path_compression.cpp index de33b1028..d538c4c89 100644 --- a/data_structures/dsu_path_compression.cpp +++ b/data_structures/dsu_path_compression.cpp @@ -43,7 +43,7 @@ class dsu{ */ explicit dsu(uint64_t n){ p.assign(n,0); - //initially all of them are their own parents. + /// initially, all of them are their own parents for(uint64_t i=0;i