From 3883feb0e06458153e8a1b56566582b6725330d2 Mon Sep 17 00:00:00 2001 From: Calmon Ribeiro Date: Tue, 8 Oct 2024 14:40:59 -0300 Subject: [PATCH] docs(ext/dynblock): recursive function call typo in detecting variables (#686) --- ext/dynblock/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dynblock/README.md b/ext/dynblock/README.md index f59ce92e..1cee2b93 100644 --- a/ext/dynblock/README.md +++ b/ext/dynblock/README.md @@ -134,7 +134,7 @@ func walkVariables(node dynblock.WalkVariablesNode, schema *hcl.BodySchema) []hc panic(fmt.Errorf("can't find schema for unknown block type %q", child.BlockTypeName)) } - vars = append(vars, testWalkAndAccumVars(child.Node, childSchema)...) + vars = append(vars, walkVariables(child.Node, childSchema)...) } } ```