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 0455389534
commit 9f0f897077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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