diff options
Diffstat (limited to 'pod/perlfaq6.pod')
-rw-r--r-- | pod/perlfaq6.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq6.pod b/pod/perlfaq6.pod index de6093a5ba..bf007ee26b 100644 --- a/pod/perlfaq6.pod +++ b/pod/perlfaq6.pod @@ -533,8 +533,8 @@ pos() point. A failed match resets the position of C<\G> unless the C</c> modifier is in effect. For example, suppose you had a line of text quoted in standard mail -and Usenet notation, (that is, with leading C<E<gt>> characters), and -you want change each leading C<E<gt>> into a corresponding C<:>. You +and Usenet notation, (that is, with leading C<< > >> characters), and +you want change each leading C<< > >> into a corresponding C<:>. You could do so in this way: s/^(>+)/':' x length($1)/gem; |