diff options
| author | Calmon Ribeiro <calmonrib@gmail.com> | 2024-10-08 14:40:59 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-08 19:40:59 +0200 |
| commit | 3883feb0e06458153e8a1b56566582b6725330d2 (patch) | |
| tree | e6ca795f8f5fd20fbac3cd15c667d1711ac01fe2 | |
| parent | 2eb163fdee4d453381ada085060569475c0c6864 (diff) | |
docs(ext/dynblock): recursive function call typo in detecting variables (#686)
| -rw-r--r-- | ext/dynblock/README.md | 2 |
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)...) } } ``` |
