From: Karl Williamson Date: Tue, 17 Dec 2019 00:06:29 +0000 (-0700) Subject: sv.h: Fix typo in pod X-Git-Tag: v5.31.7~24 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/69e897fc6e08ebb39cc69575e11460b121069a4c sv.h: Fix typo in pod --- diff --git a/sv.h b/sv.h index 318bb05..22e8391 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 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 or C. +range of both an IV and a UV may be be flagged as either C or C. =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 or C. +range of both an IV and a UV may be be flagged as either C or C. =for apidoc Am|bool|SvIOK_notUV|SV* sv Returns a boolean indicating whether the SV contains a signed integer.