summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-12-24 07:52:50 -0700
committerKarl Williamson <public@khwilliamson.com>2012-12-24 09:13:07 -0700
commitfeba1f01825ab9e965f536eadad3c9d06fad33aa (patch)
tree0c3ee2236c92abdaa8898e3ddc9fbd40c68cf348 /sv.h
parent8a6214fb052f5ea1b2cdaf17b53e7bbb89c80d45 (diff)
downloadperl-feba1f01825ab9e965f536eadad3c9d06fad33aa.tar.gz
perlapi: Fix typos
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 28cdf3bf25..b841464177 100644
--- a/sv.h
+++ b/sv.h
@@ -652,7 +652,7 @@ Unsets the IV status of an SV.
Tells an SV that it is an integer and disables all other OK bits.
=for apidoc Am|void|SvIOK_only_UV|SV* sv
-Tells and SV that it is an unsigned integer and disables all other OK bits.
+Tells an SV that it is an unsigned integer and disables all other OK bits.
=for apidoc Am|bool|SvIOK_UV|SV* sv
Returns a boolean indicating whether the SV contains an unsigned integer.
@@ -1535,7 +1535,7 @@ Like C<SvUV> but doesn't process magic.
=for apidoc Am|UV|SvUVx|SV* sv
Coerces the given SV to an unsigned integer and
-returns it. Guarantees to C<sv> only once. Only
+returns it. Guarantees to evaluate C<sv> only once. Only
use this if C<sv> is an expression with side effects,
otherwise use the more efficient C<SvUV>.