This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
FAQ sync.
[perl5.git] / pod / perldebug.pod
index 2133fcf..bb01bd3 100644 (file)
@@ -6,6 +6,10 @@ perldebug - Perl debugging
 
 First of all, have you tried using the B<-w> switch?
 
+
+If you're new to the Perl debugger, you may prefer to read
+L<perldebtut>, which is a tutorial introduction to the debugger .
+
 =head1 The Perl Debugger
 
 If you invoke Perl with the B<-d> switch, your script runs under the
@@ -940,6 +944,7 @@ See L<perldebguts/"Debugging Perl memory usage"> for the details.
 
 You did try the B<-w> switch, didn't you?
 
+L<perldebtut>,
 L<perldebguts>,
 L<re>,
 L<DB>,
@@ -955,7 +960,7 @@ You cannot get stack frame information or in any fashion debug functions
 that were not compiled by Perl, such as those from C or C++ extensions.
 
 If you alter your @_ arguments in a subroutine (such as with C<shift>
-or C<pop>, the stack backtrace will not show the original values.
+or C<pop>), the stack backtrace will not show the original values.
 
 The debugger does not currently work in conjunction with the B<-W>
 command-line switch, because it itself is not free of warnings.