From 1cbc00c54181a2017f55b4fe5ddcfe9afe87be70 Mon Sep 17 00:00:00 2001 From: Gpamangkp <41160734+Gpamangkp@users.noreply.github.com> Date: Fri, 23 Oct 2020 09:13:27 +0530 Subject: [PATCH] Update graph/breadth_first_search.cpp Co-authored-by: David Leal --- graph/breadth_first_search.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/graph/breadth_first_search.cpp b/graph/breadth_first_search.cpp index f7a0a5077..3843ac18a 100644 --- a/graph/breadth_first_search.cpp +++ b/graph/breadth_first_search.cpp @@ -54,7 +54,10 @@ #include #include -///namespace graph which contains the class Graph +/** + * \namespace graph + * \brief Graph algorithms + */ namespace graph{ /* Class Graph definition */ template