From ddfda430d46004cd56dd9660b387a888eabd7fb0 Mon Sep 17 00:00:00 2001 From: Karsten Jeschkies Date: Tue, 22 Oct 2019 11:40:50 +0200 Subject: [PATCH] Correct simple typo in `walk.go`. --- dag/walk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dag/walk.go b/dag/walk.go index 1c926c2c2..509d76a3e 100644 --- a/dag/walk.go +++ b/dag/walk.go @@ -15,7 +15,7 @@ import ( // been walked. If two vertices can be walked at the same time, they will be. // // Update can be called to update the graph. This can be called even during -// a walk, cahnging vertices/edges mid-walk. This should be done carefully. +// a walk, changing vertices/edges mid-walk. This should be done carefully. // If a vertex is removed but has already been executed, the result of that // execution (any error) is still returned by Wait. Changing or re-adding // a vertex that has already executed has no effect. Changing edges of