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