summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-12-16 17:06:29 -0700
committerKarl Williamson <khw@cpan.org>2019-12-16 17:10:57 -0700
commit69e897fc6e08ebb39cc69575e11460b121069a4c (patch)
treeefde29fa29ce5ef647ed62420664519ca747d267 /sv.h
parent0896c457799ad2ce24e587cfa95c7b31214edb83 (diff)
downloadperl-69e897fc6e08ebb39cc69575e11460b121069a4c.tar.gz
sv.h: Fix typo in pod
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.h b/sv.h
index 318bb056a5..22e8391046 100644
--- a/sv.h
+++ b/sv.h
@@ -702,12 +702,12 @@ Tells an SV that it is an unsigned integer and disables all other C<OK> bits.
=for apidoc Am|bool|SvIOK_UV|SV* sv
Returns a boolean indicating whether the SV contains an integer that must be
interpreted as unsigned. A non-negative integer whose value is within the
-range of both an IV and a UV may be be flagged as either C<SvUOK> or C<SVIOK>.
+range of both an IV and a UV may be be flagged as either C<SvUOK> or C<SvIOK>.
=for apidoc Am|bool|SvUOK|SV* sv
Returns a boolean indicating whether the SV contains an integer that must be
interpreted as unsigned. A non-negative integer whose value is within the
-range of both an IV and a UV may be be flagged as either C<SvUOK> or C<SVIOK>.
+range of both an IV and a UV may be be flagged as either C<SvUOK> or C<SvIOK>.
=for apidoc Am|bool|SvIOK_notUV|SV* sv
Returns a boolean indicating whether the SV contains a signed integer.