From fd6b8100614e97b30056eb48744cb4fc8cbd32b9 Mon Sep 17 00:00:00 2001 From: AkVaya Date: Sat, 15 Aug 2020 10:58:51 +0530 Subject: [PATCH] Performed the requested changes --- graph/is_graph_bipartite.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/graph/is_graph_bipartite.cpp b/graph/is_graph_bipartite.cpp index db73a72a..baadf71f 100644 --- a/graph/is_graph_bipartite.cpp +++ b/graph/is_graph_bipartite.cpp @@ -1,5 +1,5 @@ /** - * @file is_graph_bipartite + * @file * * @brief Algorithm to check whether a graph is [bipartite](https://en.wikipedia.org/wiki/Bipartite_graph) * @@ -11,7 +11,7 @@ * * The given Algorithm will determine whether the given graph is bipartite or not * - * + *
  * 	Example - Here is a graph g1 with 5 vertices and is bipartite
  *	
  *		1   4
@@ -24,6 +24,8 @@
  *		 \   /
  *		   3
  *	
+ *	
+ * * @author [Akshat Vaya](https://github.com/AkVaya) * */ -- GitLab