summaryrefslogtreecommitdiff
path: root/lib/overload.pm
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-08-15 19:59:43 -0600
committerKarl Williamson <khw@cpan.org>2020-08-31 18:15:43 -0600
commiteb992c6fe3eb695f0f4836b9844ec01616381441 (patch)
tree9bc6fd08e285f91eac42e8b7bdc66ae5640ffb65 /lib/overload.pm
parent2de859ce01e2f9e2245611a869f4d041bb48d2ca (diff)
downloadperl-eb992c6fe3eb695f0f4836b9844ec01616381441.tar.gz
Change some link pod for better rendering
C<L</foo>> renders better in places than L</C<foo>>
Diffstat (limited to 'lib/overload.pm')
-rw-r--r--lib/overload.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/overload.pm b/lib/overload.pm
index 30f810b0a1..c8b46f4487 100644
--- a/lib/overload.pm
+++ b/lib/overload.pm
@@ -1,6 +1,6 @@
package overload;
-our $VERSION = '1.31';
+our $VERSION = '1.32';
%ops = (
with_assign => "+ - * / % ** << >> x .",
@@ -1239,7 +1239,7 @@ Put this in F<symbolic.pm> in your Perl library directory:
This module is very unusual as overloaded modules go: it does not
provide any usual overloaded operators, instead it provides an
-implementation for L</C<nomethod>>. In this example the C<nomethod>
+implementation for C<L</nomethod>>. In this example the C<nomethod>
subroutine returns an object which encapsulates operations done over
the objects: C<< symbolic->new(3) >> contains C<['n', 3]>, C<< 2 +
symbolic->new(3) >> contains C<['+', 2, ['n', 3]]>.