From 03587e0ffae6eaaf8e9f65766411e8b41262174f Mon Sep 17 00:00:00 2001 From: Elliot Bonneville Date: Fri, 9 Feb 2024 12:06:44 -0500 Subject: [PATCH] Typo fix in spec.md --- hclsyntax/spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hclsyntax/spec.md b/hclsyntax/spec.md index 6d31e352..88925410 100644 --- a/hclsyntax/spec.md +++ b/hclsyntax/spec.md @@ -668,7 +668,7 @@ a == b equal a != b not equal ``` -Two values are equal if the are of identical types and their values are +Two values are equal if they are of identical types and their values are equal as defined in the HCL syntax-agnostic information model. The equality operators are commutative and opposite, such that `(a == b) == !(a != b)` and `(a == b) == (b == a)` for all values `a` and `b`.