Skip to content

Commit

Permalink
docs(ext/dynblock): recursive function call typo in detecting variabl…
Browse files Browse the repository at this point in the history
…es (#686)
  • Loading branch information
calmonr authored Oct 8, 2024
1 parent 2eb163f commit 3883feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/dynblock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)...)
}
}
```
Expand Down

0 comments on commit 3883feb

Please sign in to comment.