Subject: | documentation error |
Date: | Sun, 2 Jul 2006 21:42:03 -0400 |
To: | bug-regexp-matchcontext [...] rt.cpan.org |
From: | Wardman_Michael [...] emc.com |
Hi there
Just checking out your Regexp::MatchContext module as per recommendation in
"Perl Best Practises"
I think there's a typo in the documentation, however.
The module I have gives the example:
$str = 'foobarbaz';
$str =~ /(?p) foo /x;
But i think it should be
$str = 'foobarbaz';
$str =~ /(?p) bar /x;
to make the comments correct.
Anyway, thanks for the effort in writing such a useful module :)
~ Michael