From 9e8f311df150e44ccd079e87ad01dabddffb5f7e Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 14 Nov 2016 09:34:21 -0800 Subject: [PATCH] terraform: fix typo --- terraform/transform_destroy_edge.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/transform_destroy_edge.go b/terraform/transform_destroy_edge.go index 194048c92..789586ef0 100644 --- a/terraform/transform_destroy_edge.go +++ b/terraform/transform_destroy_edge.go @@ -159,7 +159,7 @@ func (t *DestroyEdgeTransformer) Transform(g *Graph) error { // Go through all the nodes in the graph and determine what they // depend on. for _, v := range tempDestroyed { - // Find all descendents of this to determine the edges we'll depend on + // Find all ancestors of this to determine the edges we'll depend on vs, err := tempG.Ancestors(v) if err != nil { return err