Skip to content

Commit 712421e

Browse files
committed
Correct other Tuple bug
1 parent dcb595a commit 712421e

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

docs/src/tutorial_graphs.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,8 @@ We can check the set of vertices:
5454
julia> nv(cities)
5555
3
5656
57-
julia> collect(vertices(cities))
58-
3-element Vector{Int64}:
59-
1
60-
2
61-
3
57+
julia> Tuple(collect(vertices(cities)))
58+
(1, 2, 3)
6259
6360
julia> has_vertex(cities, 2)
6461
true

0 commit comments

Comments
 (0)