summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-04-22 13:00:22 -0600
committerKarl Williamson <khw@cpan.org>2016-04-22 13:08:10 -0600
commita95b3d6ada665e29ff33e3063306726e5ec40338 (patch)
tree07b90150d67aff5172c2681c07da6b74e0ae955a /pod/perlop.pod
parent319b236e2ed58e5be687a549dd0b94342cacd751 (diff)
downloadperl-a95b3d6ada665e29ff33e3063306726e5ec40338.tar.gz
Fix some pod errors
These were discovered while testing the Pod::Checker that is intended to be used in 5.25.
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index 17d24bb4f7..9b1319a7a6 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -258,7 +258,7 @@ produces a warning unless you use S<C<no warnings 'experimental::bitwise'>>.
Unary C<"+"> has no effect whatsoever, even on strings. It is useful
syntactically for separating a function name from a parenthesized expression
that would otherwise be interpreted as the complete list of function
-arguments. (See examples above under L<Terms and List Operators (Leftward)>.)
+arguments. (See examples above under L</Terms and List Operators (Leftward)>.)
X<+>
Unary C<"\"> creates a reference to whatever follows it. See L<perlreftut>
@@ -1272,7 +1272,7 @@ in which case you might as well just use the more customary C<"||"> operator:
open(HANDLE, "< :utf8", "filename") || die "Can't open: $!\n";
-See also discussion of list operators in L<Terms and List Operators (Leftward)>.
+See also discussion of list operators in L</Terms and List Operators (Leftward)>.
=head2 Logical Not
X<operator, logical, not> X<not>