From 076aa5aafc2e16afe0606281c369a7cdd990293f Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Sat, 27 Jan 2018 10:53:27 -0800 Subject: [PATCH] hcl: update stale references to "zcl" --- hcl/ops.go | 2 +- hcl/traversal_for_expr.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hcl/ops.go b/hcl/ops.go index 80312b0..f4e30b0 100644 --- a/hcl/ops.go +++ b/hcl/ops.go @@ -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 diff --git a/hcl/traversal_for_expr.go b/hcl/traversal_for_expr.go index 86fc624..6124495 100644 --- a/hcl/traversal_for_expr.go +++ b/hcl/traversal_for_expr.go @@ -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. //