From 79773a031f84d733f4fd41557da982115bac7a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Tue, 11 Jul 2023 15:03:40 +0200 Subject: [PATCH] docs: fix typo in regex_replace.mdx (#17891) --- .../job-specification/hcl2/functions/string/regex_replace.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/content/docs/job-specification/hcl2/functions/string/regex_replace.mdx b/website/content/docs/job-specification/hcl2/functions/string/regex_replace.mdx index 511b20f58..92974372a 100644 --- a/website/content/docs/job-specification/hcl2/functions/string/regex_replace.mdx +++ b/website/content/docs/job-specification/hcl2/functions/string/regex_replace.mdx @@ -32,7 +32,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")