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 +}