Skip to content

Commit

Permalink
Update graph.md
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros authored Jan 22, 2024
1 parent 7f6e2f2 commit 6209a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial/graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ There are also some functions for both classes like **has_edge(u, v)** that chec
### **DFS**:
```cpp
#include <algoplus/graph>
graph<int> g("directed);
graph<int> g("directed");
g.add_edge(1, 2);
g.add_edge(4, 5);
g.add_edge(5 , 6);
Expand Down

0 comments on commit 6209a8a

Please sign in to comment.