summaryrefslogtreecommitdiff
path: root/pod/perldebtut.pod
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2010-09-22 09:30:25 +0200
committerFlorian Ragwitz <rafl@debian.org>2010-09-22 09:31:23 +0200
commit756173d302c7f4024a88f3e7aafa344c3b63a32a (patch)
treee3b4fba22d0bc1ac0228ec7686543669d8b440b2 /pod/perldebtut.pod
parentb80bacb36cd478933a0d6920b63a221d60dd7e35 (diff)
downloadperl-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.pod2
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':