summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-10-06 12:11:10 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-10-06 12:11:10 +0000
commit42c13b5668575bd6c29f9ff942e1bfd678d982e0 (patch)
tree1ede356ddbe5a9fa593fc8719c8f6d1be385e38f /pod
parent608d3aed02075391572aedd203d1c73a9f25a2f0 (diff)
downloadperl-42c13b5668575bd6c29f9ff942e1bfd678d982e0.tar.gz
Typos in perldiag.
p4raw-id: //depot/perl@21411
Diffstat (limited to 'pod')
-rw-r--r--pod/perldiag.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index e445d08060..b75793a91a 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 } }