04bfb0
From 7ea7c4bb61d23965a7ad7041fe9c58b5075aac85 Mon Sep 17 00:00:00 2001
04bfb0
From: James E Keenan <jkeenan@cpan.org>
04bfb0
Date: Sat, 31 Aug 2019 19:18:36 -0400
04bfb0
Subject: [PATCH] Supply missing right brace in regex example
04bfb0
MIME-Version: 1.0
04bfb0
Content-Type: text/plain; charset=UTF-8
04bfb0
Content-Transfer-Encoding: 8bit
04bfb0
04bfb0
As suggested by Jim Avera in RT 134395.
04bfb0
04bfb0
Signed-off-by: Petr Písař <ppisar@redhat.com>
04bfb0
---
04bfb0
 pod/perlrebackslash.pod | 2 +-
04bfb0
 1 file changed, 1 insertion(+), 1 deletion(-)
04bfb0
04bfb0
diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod
04bfb0
index cfd182a7e1..4a8717346d 100644
04bfb0
--- a/pod/perlrebackslash.pod
04bfb0
+++ b/pod/perlrebackslash.pod
04bfb0
@@ -446,7 +446,7 @@ Mnemonic: I<g>roup.
04bfb0
 =head3 Relative referencing
04bfb0
 
04bfb0
 C<\g-I<N>> (starting in Perl 5.10.0) is used for relative addressing.  (It can
04bfb0
-be written as C<\g{-I<N>>.)  It refers to the I<N>th group before the
04bfb0
+be written as C<\g{-I<N>}>.)  It refers to the I<N>th group before the
04bfb0
 C<\g{-I<N>}>.
04bfb0
 
04bfb0
 The big advantage of this form is that it makes it much easier to write
04bfb0
-- 
04bfb0
2.21.0
04bfb0