Skip to content

Commit fe30fce

Browse files
committed
Fix the docstring of vertex_count in graph.py
1 parent 4724dd3 commit fe30fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cyaron/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self, point_count, directed=False):
4949

5050
def vertex_count(self):
5151
"""vertex_count(self) -> int
52-
Return the vertex of the edges in the graph.
52+
Return the count of the vertexes in the graph.
5353
"""
5454
return len(self.edges) - 1
5555

0 commit comments

Comments
 (0)