Skip to content

Commit 53a49d7

Browse files
authored
Fix typo separately
1 parent fb37f10 commit 53a49d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphs/breadth_first_search_shortest_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def shortest_path(self, target_vertex):
3232
"""This shortest path function returns a string, describing the result:
3333
1.) No path is found. The string is a human readable message to indicate this.
3434
2.) The shortest path is found. The string is in the form `v1(->v2->v3->...->vn)`,
35-
where v1 is the source vertex and vn is the target vertex, if it exists seperately.
35+
where v1 is the source vertex and vn is the target vertex, if it exists separately.
3636
"""
3737
if target_vertex == self.source_vertex:
3838
return f"{self.source_vertex}"

0 commit comments

Comments
 (0)