docs: fix typo in regex_replace.mdx (#17891)

This commit is contained in:
Kévin Dunglas
2023-07-11 15:03:40 +02:00
committed by GitHub
parent 1541358ef3
commit 79773a031f

View File

@@ -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")