From b0f837e1f3584d9bc8e1828ff44030de0e495eb4 Mon Sep 17 00:00:00 2001 From: Alisdair McDiarmid Date: Thu, 5 May 2022 18:38:29 -0400 Subject: [PATCH] Fix custom conditions Markdown typo --- website/docs/language/expressions/custom-conditions.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/docs/language/expressions/custom-conditions.mdx b/website/docs/language/expressions/custom-conditions.mdx index 449831b411..6a3a3d3603 100644 --- a/website/docs/language/expressions/custom-conditions.mdx +++ b/website/docs/language/expressions/custom-conditions.mdx @@ -255,7 +255,8 @@ You can also use `can` with attribute access or index operators to test whether ```hcl # var.example must have an attribute named "foo" - condition = can(var.example.foo) ``` + condition = can(var.example.foo) +``` ```hcl # var.example must be a sequence with at least one element