From 09e96438813caa116e683911eb32793168c24663 Mon Sep 17 00:00:00 2001 From: Samuel Phan Date: Mon, 29 May 2023 18:47:08 +0200 Subject: [PATCH] docs: add missing end quote --- .../templates/hcl_templates/functions/string/regex_replace.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/templates/hcl_templates/functions/string/regex_replace.mdx b/website/content/docs/templates/hcl_templates/functions/string/regex_replace.mdx index 9e665baa9..29d10b8e0 100644 --- a/website/content/docs/templates/hcl_templates/functions/string/regex_replace.mdx +++ b/website/content/docs/templates/hcl_templates/functions/string/regex_replace.mdx @@ -34,7 +34,7 @@ hello everybody > regex_replace("hello world", "w.*d", "everybody") hello everybody -> regex_replace("-ab-axxb-", "a(x*)b", "$1W) +> regex_replace("-ab-axxb-", "a(x*)b", "$1W") --- > regex_replace("-ab-axxb-", "a(x*)b", "${1}W")