summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadek Simko <radeksimko@users.noreply.github.com>2024-02-15 14:28:32 +0000
committerGitHub <noreply@github.com>2024-02-15 14:28:32 +0000
commite28daa316df6dcf95eb4e9ff0d60a3f9bf75f461 (patch)
treed42bbe9b530484bfb4c791f892cc752847debff4
parentfe0951f68911b50ada3c57f3c3b131b1d12d0f26 (diff)
parent03587e0ffae6eaaf8e9f65766411e8b41262174f (diff)
Merge pull request #652 from elliotbonneville/main
Typo fix in spec.md
-rw-r--r--hclsyntax/spec.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/hclsyntax/spec.md b/hclsyntax/spec.md
index 6d31e35..8892541 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`.