summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-11-20 22:53:39 +0000
committerNicholas Clark <nick@ccl4.org>2006-11-20 22:53:39 +0000
commit6f0782f417a0ad4f77f4fda488ec267d49cdebe2 (patch)
treea2c741a6726f7d71c770687c8ee4102ee6a960bc /t
parentfab01b8e4080035d4784d26a98f32ff7082031b0 (diff)
downloadperl-6f0782f417a0ad4f77f4fda488ec267d49cdebe2.tar.gz
Correct typo in test description.
p4raw-id: //depot/perl@29331
Diffstat (limited to 't')
-rwxr-xr-xt/op/pat.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/pat.t b/t/op/pat.t
index 774acf7139..2ccdfbc2db 100755
--- a/t/op/pat.t
+++ b/t/op/pat.t
@@ -4124,7 +4124,7 @@ ok((q(a)x 100) =~ /^(??{'(.)'x 100})/,
or print "# Unexpected outcome: should pass or crash perl\n";
{
- local $Message = "substituation with lookahead (possible segv)";
+ local $Message = "substitution with lookahead (possible segv)";
$_="ns1ns1ns1";
s/ns(?=\d)/ns_/g;
iseq($_,"ns_1ns_1ns_1");