summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorCalmon Ribeiro <calmonrib@gmail.com>2024-10-08 14:40:59 -0300
committerGitHub <noreply@github.com>2024-10-08 19:40:59 +0200
commit3883feb0e06458153e8a1b56566582b6725330d2 (patch)
treee6ca795f8f5fd20fbac3cd15c667d1711ac01fe2 /ext
parent2eb163fdee4d453381ada085060569475c0c6864 (diff)
docs(ext/dynblock): recursive function call typo in detecting variables (#686)
Diffstat (limited to 'ext')
-rw-r--r--ext/dynblock/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dynblock/README.md b/ext/dynblock/README.md
index f59ce92..1cee2b9 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)...)
}
}
```