From: Nicholas Clark Date: Mon, 20 Nov 2006 22:53:39 +0000 (+0000) Subject: Correct typo in test description. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6f0782f417a0ad4f77f4fda488ec267d49cdebe2;p=p5sagit%2Fp5-mst-13.2.git Correct typo in test description. p4raw-id: //depot/perl@29331 --- diff --git a/t/op/pat.t b/t/op/pat.t index 774acf7..2ccdfbc 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");