summaryrefslogtreecommitdiff
path: root/pod/perldebguts.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-04-27 05:33:41 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-04-27 05:33:41 +0000
commit106325ad18a7d364436c509de7040f7817bf07da (patch)
tree1b98b26f3b7625b6700faeb074a890825422b9ab /pod/perldebguts.pod
parent7ca86468f50e48d16c4fd42ec5831ceb1a6368c3 (diff)
downloadperl-106325ad18a7d364436c509de7040f7817bf07da.tar.gz
doubled words in pods (from Simon Cozens
<simon.p.cozens@jp.pwcglobal.com>) p4raw-id: //depot/perl@5959
Diffstat (limited to 'pod/perldebguts.pod')
-rw-r--r--pod/perldebguts.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldebguts.pod b/pod/perldebguts.pod
index 2bf6ea40de..45c33c7ec4 100644
--- a/pod/perldebguts.pod
+++ b/pod/perldebguts.pod
@@ -19,7 +19,7 @@ F<INSTALL> podpage in the Perl source tree.
For example, whenever you call Perl's built-in C<caller> function
from the package DB, the arguments that the corresponding stack
-frame was called with are copied to the the @DB::args array. The
+frame was called with are copied to the @DB::args array. The
general mechanisms is enabled by calling Perl with the B<-d> switch, the
following additional features are enabled (cf. L<perlvar/$^P>):
@@ -154,7 +154,7 @@ L<perldebug/"Options"> for description of options parsed by
C<DB::parse_options(string)>. The function C<DB::dump_trace(skip[,
count])> skips the specified number of frames and returns a list
containing information about the calling frames (all of them, if
-C<count> is missing). Each entry is reference to a a hash with
+C<count> is missing). Each entry is reference to a hash with
keys C<context> (either C<.>, C<$>, or C<@>), C<sub> (subroutine
name, or info about C<eval>), C<args> (C<undef> or a reference to
an array), C<file>, and C<line>.