diff options
author | Karl Williamson <khw@cpan.org> | 2018-06-01 10:48:39 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2019-05-25 22:15:22 -0600 |
commit | 53cb450350b86f88efc3a123b5d69975ee3297e6 (patch) | |
tree | 2662b54b6a4d7a250c4bcd24fb6601bd3c60504b /lib/Class | |
parent | 03c94503242bec08908a66bd7f44fc8551f7af71 (diff) | |
download | perl-53cb450350b86f88efc3a123b5d69975ee3297e6.tar.gz |
lib/Class/Struct.pm: Use L</Foo Bar>, not L<Foo Bar>
Diffstat (limited to 'lib/Class')
-rw-r--r-- | lib/Class/Struct.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Class/Struct.pm b/lib/Class/Struct.pm index 0aaab519b7..c593dc7c39 100644 --- a/lib/Class/Struct.pm +++ b/lib/Class/Struct.pm @@ -14,7 +14,7 @@ require Exporter; @ISA = qw(Exporter); @EXPORT = qw(struct); -$VERSION = '0.65'; +$VERSION = '0.66'; my $print = 0; sub printem { @@ -375,7 +375,7 @@ on the declared type of the element. =item Scalar (C<'$'> or C<'*$'>) The element is a scalar, and by default is initialized to C<undef> -(but see L<Initializing with new>). +(but see L</Initializing with new>). The accessor's argument, if any, is assigned to the element. |