summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-06-19 12:54:11 -0500
committerJesse Luehrs <doy@tozt.net>2012-06-19 13:03:30 -0500
commitceadd55dbfba47c62a95fda7e7bcd960049883c8 (patch)
tree0419e915aa2d0fb13beb141e32d46148113c1b6a
parent4a73d4436df47069617d7e72be60ab9df22c59da (diff)
downloadperl-ceadd55dbfba47c62a95fda7e7bcd960049883c8.tar.gz
we seem to have been using L<> rather than C<> here recently
-rwxr-xr-xPorting/corelist-perldelta.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/Porting/corelist-perldelta.pl b/Porting/corelist-perldelta.pl
index 9d993f2841..e6fb582ab9 100755
--- a/Porting/corelist-perldelta.pl
+++ b/Porting/corelist-perldelta.pl
@@ -49,15 +49,15 @@ my $deprecated;
sub added {
my ($mod, $old_v, $new_v) = @_;
say "=item *\n";
- say "C<$mod> $new_v has been added to the Perl core.\n";
+ say "L<$mod> $new_v has been added to the Perl core.\n";
}
sub updated {
my ($mod, $old_v, $new_v) = @_;
say "=item *\n";
- say "C<$mod> has been upgraded from version $old_v to $new_v.\n";
+ say "L<$mod> has been upgraded from version $old_v to $new_v.\n";
if ( $deprecated->{$mod} ) {
- say "NOTE: C<$mod> is deprecated and may be removed from a future version of Perl.\n";
+ say "NOTE: L<$mod> is deprecated and may be removed from a future version of Perl.\n";
}
}