ext/userfunc: update stale references to "zcl"

This commit is contained in:
Martin Atkins 2018-01-27 10:35:12 -08:00
parent 19d9927d4b
commit b1a8ce3a09
1 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
# zcl User Functions Extension # HCL User Functions Extension
This zcl extension allows a calling application to support user-defined This HCL extension allows a calling application to support user-defined
functions. functions.
Functions are defined via a specific block type, like this: Functions are defined via a specific block type, like this:
```zcl ```hcl
function "add" { function "add" {
params = ["a", "b"] params = ["a", "b"]
result = a + b result = a + b
@ -19,4 +19,4 @@ inclusion in a `hcl.EvalContext`. It also returns a new `cty.Body` that
contains the remainder of the content from the given body, allowing for contains the remainder of the content from the given body, allowing for
further processing of remaining content. further processing of remaining content.
For more information, see [the godoc reference](http://godoc.org/github.com/zclconf/go-zcl/ext/userfunc). For more information, see [the godoc reference](http://godoc.org/github.com/hashicorp/hcl2/ext/userfunc).