From 11ac67cc4430c33e21164d8c84732f07f060c538 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Mon, 29 Jun 2020 19:07:52 -0400 Subject: [PATCH] fix 2 stars in comment --- backtracking/graph_coloring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracking/graph_coloring.cpp b/backtracking/graph_coloring.cpp index 745fd99f0..57c10d450 100644 --- a/backtracking/graph_coloring.cpp +++ b/backtracking/graph_coloring.cpp @@ -39,7 +39,7 @@ bool isSafe(int v, const bool graph[V][V], const int *color, int c) { return true; } -/* A recursive utility function to solve m coloring problem +/** A recursive utility function to solve m coloring problem * @tparam V number of vertices in the graph * @param graph description * @param m description