DOC: fix a confusing typo on a regsub example

Sébastien reported a confusing example in the doc about regsub when used
with quotes. Nested quotes are already not trivial to grasp, but when
typos are there and result in something valid, it's even worse. The closing
quote ought to have been inside the brackets. However haproxy will not make
any difference because the single quotes delimit a word and the delimited
word remains the same. Let's just not add yet another level of confusion.
diff --git a/doc/configuration.txt b/doc/configuration.txt
index 3054b1c..3b14e83 100644
--- a/doc/configuration.txt
+++ b/doc/configuration.txt
@@ -15476,7 +15476,7 @@
 
      # capture groups and backreferences
      # both lines do the same.
-     http-request redirect location %[url,'regsub("(foo|bar)([0-9]+)?","\2\1",i)]'
+     http-request redirect location %[url,'regsub("(foo|bar)([0-9]+)?","\2\1",i)']
      http-request redirect location %[url,regsub(\"(foo|bar)([0-9]+)?\",\"\2\1\",i)]
 
 capture-req(<id>)