perlapi: Fix typos
authorKarl Williamson <public@khwilliamson.com>
Mon, 24 Dec 2012 14:52:50 +0000 (07:52 -0700)
committerKarl Williamson <public@khwilliamson.com>
Mon, 24 Dec 2012 16:13:07 +0000 (09:13 -0700)
sv.h

diff --git a/sv.h b/sv.h
index 28cdf3b..b841464 100644 (file)
--- 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>.