diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-12-24 07:52:50 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-12-24 09:13:07 -0700 |
commit | feba1f01825ab9e965f536eadad3c9d06fad33aa (patch) | |
tree | 0c3ee2236c92abdaa8898e3ddc9fbd40c68cf348 /sv.h | |
parent | 8a6214fb052f5ea1b2cdaf17b53e7bbb89c80d45 (diff) | |
download | perl-feba1f01825ab9e965f536eadad3c9d06fad33aa.tar.gz |
perlapi: Fix typos
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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>. |