From 6209a8ae8d692bb488eb4a1aadf0a836e8a81b86 Mon Sep 17 00:00:00 2001 From: Spiros Maggioros <51701672+spirosmaggioros@users.noreply.github.com> Date: Mon, 22 Jan 2024 16:35:29 +0200 Subject: [PATCH] Update graph.md --- tutorial/graph.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/graph.md b/tutorial/graph.md index 61dde9a2..3407c9fd 100644 --- a/tutorial/graph.md +++ b/tutorial/graph.md @@ -26,7 +26,7 @@ There are also some functions for both classes like **has_edge(u, v)** that chec ### **DFS**: ```cpp #include -graph g("directed); +graph g("directed"); g.add_edge(1, 2); g.add_edge(4, 5); g.add_edge(5 , 6);