diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-09-22 09:30:25 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-09-22 09:31:23 +0200 |
commit | 756173d302c7f4024a88f3e7aafa344c3b63a32a (patch) | |
tree | e3b4fba22d0bc1ac0228ec7686543669d8b440b2 /pod/perldebtut.pod | |
parent | b80bacb36cd478933a0d6920b63a221d60dd7e35 (diff) | |
download | perl-756173d302c7f4024a88f3e7aafa344c3b63a32a.tar.gz |
Fix misinformation in perldebtut
'B' is for removing breakpoints, not 'd' or 'D'. Pointed out by Jerry Huth.
Diffstat (limited to 'pod/perldebtut.pod')
-rw-r--r-- | pod/perldebtut.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldebtut.pod b/pod/perldebtut.pod index b10f9b4066..77b8690535 100644 --- a/pod/perldebtut.pod +++ b/pod/perldebtut.pod @@ -512,7 +512,7 @@ using the list 'L' command: 17: print "$out $deg\n"; break if (1) -Note that to delete a breakpoint you use 'd' or 'D'. +Note that to delete a breakpoint you use 'B'. Now we'll continue down into our subroutine, this time rather than by line number, we'll use the subroutine name, followed by the now familiar 'v': |