summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorKarl <khw@karl.(none)>2008-12-26 10:18:34 -0700
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2008-12-26 23:23:55 +0100
commitfe749c9aa803ce74d997ff797103481a55741837 (patch)
treea8009cd572392a5b7a06cc5988ebc5661dd65f91 /sv.h
parenteccdc4d715215b93b6b598d8cf3ac12e323f67e0 (diff)
downloadperl-fe749c9aa803ce74d997ff797103481a55741837.tar.gz
Update comments and documentation dealing with utf
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sv.h b/sv.h
index a09a134c8f..43bc541559 100644
--- a/sv.h
+++ b/sv.h
@@ -593,7 +593,7 @@ double.
=for apidoc Am|U32|SvNIOKp|SV* sv
Returns a U32 value indicating whether the SV contains a number, integer or
-double. Checks the B<private> setting. Use C<SvNIOK>.
+double. Checks the B<private> setting. Use C<SvNIOK> instead.
=for apidoc Am|void|SvNIOK_off|SV* sv
Unsets the NV/IV status of an SV.
@@ -604,15 +604,15 @@ whether the value is defined or not.
=for apidoc Am|U32|SvIOKp|SV* sv
Returns a U32 value indicating whether the SV contains an integer. Checks
-the B<private> setting. Use C<SvIOK>.
+the B<private> setting. Use C<SvIOK> instead.
=for apidoc Am|U32|SvNOKp|SV* sv
Returns a U32 value indicating whether the SV contains a double. Checks the
-B<private> setting. Use C<SvNOK>.
+B<private> setting. Use C<SvNOK> instead.
=for apidoc Am|U32|SvPOKp|SV* sv
Returns a U32 value indicating whether the SV contains a character string.
-Checks the B<private> setting. Use C<SvPOK>.
+Checks the B<private> setting. Use C<SvPOK> instead.
=for apidoc Am|U32|SvIOK|SV* sv
Returns a U32 value indicating whether the SV contains an integer.