From 8d1fc2769acc0ff8d2c36f25c208e9f0247c6c57 Mon Sep 17 00:00:00 2001 From: Krishna Pal Deora <53469625+Krishnapal4050@users.noreply.github.com> Date: Thu, 1 Oct 2020 04:45:57 +0530 Subject: [PATCH] Update graph/hopcroft_karp.cpp Co-authored-by: David Leal --- graph/hopcroft_karp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph/hopcroft_karp.cpp b/graph/hopcroft_karp.cpp index 2193d92ba..d42ce01a0 100644 --- a/graph/hopcroft_karp.cpp +++ b/graph/hopcroft_karp.cpp @@ -240,8 +240,8 @@ BGraph::BGraph(int m, int n):NIL(0),INF(INT_MAX) /** * Function documentation * @brief function to add edge from u to v - * @param 'u' is the position of first vertex - * @param 'v' is the position of second vertex + * @param u is the position of first vertex + * @param v is the position of second vertex */ void BGraph::addEdge(int u, int v) {