summaryrefslogtreecommitdiff
path: root/ext/B
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2017-07-25 06:44:52 -0400
committerJames E Keenan <jkeenan@cpan.org>2017-07-25 07:18:22 -0400
commitecfa068aa0dab432bfdef423766b665be127ef77 (patch)
treedc28cd966cbafdb7f26636d2342bbc31fe3b437d /ext/B
parent0397beb0d12565d70e168bfea7376e2612a6748a (diff)
downloadperl-ecfa068aa0dab432bfdef423766b665be127ef77.tar.gz
Remove B::Debug from core distribution.
It continues to exist as a CPAN distribution. Increment $B::Terse::VERSION due to change in POD. Remove internal links to B::Debug within two .pod files. For: RT #130410
Diffstat (limited to 'ext/B')
-rw-r--r--ext/B/B/Terse.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/B/B/Terse.pm b/ext/B/B/Terse.pm
index 681112e904..4401073f25 100644
--- a/ext/B/B/Terse.pm
+++ b/ext/B/B/Terse.pm
@@ -1,6 +1,6 @@
package B::Terse;
-our $VERSION = '1.08';
+our $VERSION = '1.09';
use strict;
use B qw(class @specialsv_name);
@@ -73,7 +73,7 @@ B::Terse - Walk Perl syntax tree, printing terse info about ops
=head1 DESCRIPTION
This module prints the contents of the parse tree, but without as much
-information as L<B::Debug>. For comparison, C<print "Hello, world.">
+information as CPAN module B::Debug. For comparison, C<print "Hello, world.">
produced 96 lines of output from B::Debug, but only 6 from B::Terse.
This module is useful for people who are writing their own back end,