diff --git a/cyaron/graph.py b/cyaron/graph.py index 48e8f0a..f122837 100644 --- a/cyaron/graph.py +++ b/cyaron/graph.py @@ -48,7 +48,7 @@ def __init__(self, point_count, directed=False): self.edges = [[] for i in range(point_count + 1)] def vertex_count(self): - """edge_count(self) -> int + """vertex_count(self) -> int Return the vertex of the edges in the graph. """ return len(self.edges) - 1