From 3141ad5700c94ab6ec476a3defda585b7ce506f0 Mon Sep 17 00:00:00 2001 From: ugurthemaster Date: Tue, 26 Nov 2013 11:00:37 +0200 Subject: [PATCH] Update graph_search.py A typo has been corrected. --- graph_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph_search.py b/graph_search.py index 798c6e24..c2062eab 100644 --- a/graph_search.py +++ b/graph_search.py @@ -67,7 +67,7 @@ def find_shortest_path(self, start, end, path=[]): 'F': ['C'] } -#inistialization of new graph search object +#initialization of new graph search object graph1 = GraphSearch(graph)