From 13b2e9dab7f1c78d4006a7b4010bed47731528c5 Mon Sep 17 00:00:00 2001 From: ridwanfathin Date: Mon, 12 Oct 2020 09:06:33 +0700 Subject: [PATCH] fix comment typo --- graph/shortest_distance_fw.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph/shortest_distance_fw.go b/graph/shortest_distance_fw.go index 6bcec67..f66cd12 100644 --- a/graph/shortest_distance_fw.go +++ b/graph/shortest_distance_fw.go @@ -1,4 +1,4 @@ -// shorted distances between every pair of vertices using floyd-warshall algorithm +// shortest distances between every pair of vertices using floyd-warshall algorithm // https://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall_algorithm // http://www.golangprograms.com/golang-program-for-implementation-of-floyd-warshall-algorithm.html package graph