From: Rafael Garcia-Suarez Date: Mon, 6 Oct 2003 12:11:10 +0000 (+0000) Subject: Typos in perldiag. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=42c13b5668575bd6c29f9ff942e1bfd678d982e0;p=p5sagit%2Fp5-mst-13.2.git Typos in perldiag. p4raw-id: //depot/perl@21411 --- diff --git a/pod/perldiag.pod b/pod/perldiag.pod index e445d08..b75793a 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -4359,10 +4359,10 @@ longer than 1024 characters. The return value has been truncated to (W closure) During compilation, an inner named subroutine or eval is attempting to capture an outer lexical that is not currently available. -This can be happen for one of two reasons. First, the outer lexical may be +This can happen for one of two reasons. First, the outer lexical may be declared in an outer anonymous subroutine that has not yet been created. (Remember that named subs are created at compile time, while anonymous -subs are created at run-time. For example, +subs are created at run-time.) For example, sub { my $a; sub f { $a } }