From 6ec6076c16a043564127cd7af2a43f2643551a73 Mon Sep 17 00:00:00 2001
From: Aurelio Jargas <verde@aurelio.net>
Date: Tue, 25 Aug 2020 06:37:17 +0200
Subject: [PATCH] docs/string: Fix duplicated {} in match example

Follow-up fix from c5f06cd.

[ci skip]
---
 doc_src/cmds/string-match.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc_src/cmds/string-match.rst b/doc_src/cmds/string-match.rst
index a140be247..455c8721a 100644
--- a/doc_src/cmds/string-match.rst
+++ b/doc_src/cmds/string-match.rst
@@ -102,7 +102,7 @@ Match Regex Examples
     4 2
     6 2
 
-    >_ string match -r -i '0x[0-9a-f]{{1,8}}' 'int magic = 0xBadC0de;'
+    >_ string match -r -i '0x[0-9a-f]{1,8}' 'int magic = 0xBadC0de;'
     0xBadC0de
 
 .. END EXAMPLES