From 30e02cfa3d668e9b4adeabe2374ce0f18bf9d2f8 Mon Sep 17 00:00:00 2001 From: Akhil Binoy <92171031+akhil888binoy@users.noreply.github.com> Date: Sun, 21 May 2023 18:52:27 +0530 Subject: [PATCH] examples: fix typo in bellman-ford.v (#18223) --- examples/graphs/bellman-ford.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/graphs/bellman-ford.v b/examples/graphs/bellman-ford.v index b7df811b5b..cb2f8f9ee6 100644 --- a/examples/graphs/bellman-ford.v +++ b/examples/graphs/bellman-ford.v @@ -146,7 +146,7 @@ fn main() { [5, 15, 4, 0], ] - // To find number of coluns + // To find number of columns // mut cols := an_array[0].len mut graph := [][]int{} // the graph: adjacency matrix // for index, g_value in [graph_01, graph_02, graph_03] {