diff options
author | Karl <khw@karl.(none)> | 2008-12-26 10:18:34 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-12-26 23:23:55 +0100 |
commit | fe749c9aa803ce74d997ff797103481a55741837 (patch) | |
tree | a8009cd572392a5b7a06cc5988ebc5661dd65f91 /sv.h | |
parent | eccdc4d715215b93b6b598d8cf3ac12e323f67e0 (diff) | |
download | perl-fe749c9aa803ce74d997ff797103481a55741837.tar.gz |
Update comments and documentation dealing with utf
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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. |