From 0aeb8e1e2dc16b0f19eaedd19530b4bff4eaff17 Mon Sep 17 00:00:00 2001 From: Krishna Pal Deora <53469625+Krishnapal4050@users.noreply.github.com> Date: Thu, 1 Oct 2020 04:45:14 +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 6e75545c3..88d9d5754 100644 --- a/graph/hopcroft_karp.cpp +++ b/graph/hopcroft_karp.cpp @@ -184,8 +184,8 @@ bool BGraph::bfs() /** * Function documentation * @param u represents position of vertex - * @returns 'true' if there is an augmenting path beginning with free vertex u - * @returns 'false' if there is no augmenting path beginning with free vertex u + * @returns `true` if there is an augmenting path beginning with free vertex u + * @returns `false` if there is no augmenting path beginning with free vertex u */ bool BGraph::dfs(int u) {