Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bobluppes authored May 25, 2023
1 parent 1481ba0 commit b3b466e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ my_graph.add_edge(bob, alice, Connection{
Implementations for common graph algorithms are provided under the `algorithm` namespace. For instance, there is support for traversing a graph using *depth-first search* and *breadth-first search* strategies.

```c++
const auto print_vertex_callback{[&visited_vertices](const auto vertex) {
const auto print_vertex_callback{[](const auto vertex) {
std::cout << vertex << std::endl;
}};

Expand Down

0 comments on commit b3b466e

Please sign in to comment.