summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorMark-Jason Dominus <mjd@plover.com>2000-10-09 00:24:44 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-10-09 13:43:45 +0000
commitaa0b556f5f11a57517c1869cfb49a9d7f16bcefc (patch)
treeec6e42140e7707803dca4d7fe6d6c93973656c08 /pod
parent5dcbab342366e23215fe343c50f656558418f409 (diff)
downloadperl-aa0b556f5f11a57517c1869cfb49a9d7f16bcefc.tar.gz
PATCH 5.6 perldebguts grammar cleanup
Message-ID: <20001009002444.10616.qmail@plover.com> p4raw-id: //depot/perl@7169
Diffstat (limited to 'pod')
-rw-r--r--pod/perldebguts.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perldebguts.pod b/pod/perldebguts.pod
index 396f3c2e0b..742423bb67 100644
--- a/pod/perldebguts.pod
+++ b/pod/perldebguts.pod
@@ -32,8 +32,8 @@ Perl inserts the contents of C<$ENV{PERL5DB}> (or C<BEGIN {require
=item *
-The array C<@{"_<$filename"}> holds the lines of $filename for all
-files compiled by Perl. The same for C<eval>ed strings that contain
+Each array C<@{"_<$filename"}> holds the lines of $filename for a
+file compiled by Perl. The same for C<eval>ed strings that contain
subroutines, or which are currently being executed. The $filename
for C<eval>ed strings looks like C<(eval 34)>. Code assertions
in regexes look like C<(re_eval 19)>.
@@ -43,7 +43,7 @@ equal to zero only if the line is not breakable.
=item *
-The hash C<%{"_<$filename"}> contains breakpoints and actions keyed
+Each hash C<%{"_<$filename"}> contains breakpoints and actions keyed
by line number. Individual entries (as opposed to the whole hash)
are settable. Perl only cares about Boolean true here, although
the values used by F<perl5db.pl> have the form
@@ -55,7 +55,7 @@ looks like C<(eval 34)> or C<(re_eval 19)>.
=item *
-The scalar C<${"_<$filename"}> contains C<"_<$filename">. This is
+Each scalar C<${"_<$filename"}> contains C<"_<$filename">. This is
also the case for evaluated strings that contain subroutines, or
which are currently being executed. The $filename for C<eval>ed
strings looks like C<(eval 34)> or C<(re_eval 19)>.