hcl: update stale references to "zcl"

This commit is contained in:
Martin Atkins 2018-01-27 10:53:27 -08:00
parent 305d5f96d1
commit 076aa5aafc
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import (
)
// Index is a helper function that performs the same operation as the index
// operator in the zcl expression language. That is, the result is the
// operator in the HCL expression language. That is, the result is the
// same as it would be for collection[key] in a configuration expression.
//
// This is exported so that applications can perform indexing in a manner

View File

@ -43,7 +43,7 @@ func AbsTraversalForExpr(expr Expression) (Traversal, Diagnostics) {
}
// RelTraversalForExpr is similar to AbsTraversalForExpr but it returns
// a relative traversal instead. Due to the nature of ZCL expressions, the
// a relative traversal instead. Due to the nature of HCL expressions, the
// first element of the returned traversal is always a TraverseAttr, and
// then it will be followed by zero or more other expressions.
//