diff --git a/data_structures/dsu_path_compression.cpp b/data_structures/dsu_path_compression.cpp index 9561f9f68..bbdc2a9a9 100644 --- a/data_structures/dsu_path_compression.cpp +++ b/data_structures/dsu_path_compression.cpp @@ -83,7 +83,7 @@ class dsu{ * @returns void */ void UnionSet(uint64_t i,uint64_t j){ - //check if both belongs to same set or not + /// check if both belongs to the same set or not if(isSame(i,j)){ return; }