diff options
author | Robin Barker <Robin.Barker@npl.co.uk> | 2009-02-11 12:52:52 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2009-02-11 14:03:51 +0100 |
commit | c6f023287ff1651300e5436a3d1202bcd0fcd710 (patch) | |
tree | df6d205fb0d8c11dc70a3081dd7ebf4a92ca1c73 /lib/English.t | |
parent | 37d29c6f3453c0f472e0e800ed4a425e9d8eae97 (diff) | |
download | perl-c6f023287ff1651300e5436a3d1202bcd0fcd710.tar.gz |
Fix previous patch. Actually it's written PAREN, not PARENT.
There is a typo in English.pm test
Robin Barker
Diffstat (limited to 'lib/English.t')
-rwxr-xr-x | lib/English.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/English.t b/lib/English.t index d7466c2d3b..aa7e9d47bc 100755 --- a/lib/English.t +++ b/lib/English.t @@ -99,7 +99,7 @@ ok( $SYSTEM_FD_MAX >= 2, '$SYSTEM_FD_MAX should be at least 2' ); is( $INPLACE_EDIT, '.inplace', '$INPLACE_EDIT' ); 'aabbcc' =~ /(.{2}).+(.{2})(?{ 9 })/; -is( $LAST_PAREN_MATCH, 'cc', '$LAST_PARENT_MATCH' ); +is( $LAST_PAREN_MATCH, 'cc', '$LAST_PAREN_MATCH' ); is( $LAST_REGEXP_CODE_RESULT, 9, '$LAST_REGEXP_CODE_RESULT' ); is( $LAST_MATCH_START[1], 0, '@LAST_MATCH_START' ); |