From 97f3e1a0769cf4796a2507bc93c66b6adb600757 Mon Sep 17 00:00:00 2001 From: AkVaya Date: Fri, 14 Aug 2020 01:06:24 +0530 Subject: [PATCH] Perfomed the requested changes --- graph/is_graph_bipartite.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/is_graph_bipartite.cpp b/graph/is_graph_bipartite.cpp index 7d6df310d..f0d0ef098 100644 --- a/graph/is_graph_bipartite.cpp +++ b/graph/is_graph_bipartite.cpp @@ -103,7 +103,7 @@ bool graph::is_bipartite(){ return check; } /** - * main funtion + * Main funtion */ int main(){ graph G1(5); /// creating graph G1 with 5 vertices @@ -132,4 +132,4 @@ int main(){ std::cout<<"The given graph G2 is not a bipartite graph\n"; } return 0; -} \ No newline at end of file +}