From 69e897fc6e08ebb39cc69575e11460b121069a4c Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Mon, 16 Dec 2019 17:06:29 -0700 Subject: [PATCH] sv.h: Fix typo in pod --- sv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 1.8.3.1