diff options
author | Jeffrey Friedl <jfriedl@regex.info> | 2001-11-11 13:15:18 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-12 14:50:44 +0000 |
commit | d1be9408a3c14848d30728674452e191ba5fffaa (patch) | |
tree | d3171518bc3a517cf0c9ce65b5d8382c995f2fb6 /pod/perlapi.pod | |
parent | bf0fa0b28861f64af680a3c19765ac8a24e4f2bd (diff) | |
download | perl-d1be9408a3c14848d30728674452e191ba5fffaa.tar.gz |
a few typo fixes
Message-Id: <200111120515.fAC5FIc74795@ventrue.corp.yahoo.com>
Patching README.foo instead of pod/perlfoo.pod,
not patching Math::BigInt (Tels will take care of that),
dropping broken hv.c and sv.h patches, patching libnetcfg.PL
and perldoc.PL instead of libnetcfg and perldoc, patching
ext/Digest/MD5/t/files.t since MD5.pm was changed.
p4raw-id: //depot/perl@12954
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r-- | pod/perlapi.pod | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index e01489ab49..fb6d0a669d 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -575,7 +575,7 @@ returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags, and writes the value to I<*result> (or the value is discarded if I<result> is NULL). -The hex number may optinally be prefixed with "0b" or "b" unless +The hex number may optionally be prefixed with "0b" or "b" unless C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary number may use '_' characters to separate digits. @@ -601,7 +601,7 @@ returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags, and writes the value to I<*result> (or the value is discarded if I<result> is NULL). -The hex number may optinally be prefixed with "0x" or "x" unless +The hex number may optionally be prefixed with "0x" or "x" unless C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex number may use '_' characters to separate digits. @@ -2285,7 +2285,7 @@ Found in file sv.h =item SvIVx Coerces the given SV to an integer and returns it. Guarantees to evaluate -sv only once. Use the more efficent C<SvIV> otherwise. +sv only once. Use the more efficient C<SvIV> otherwise. IV SvIVx(SV* sv) @@ -2410,7 +2410,7 @@ Found in file sv.h =item SvNVx Coerces the given SV to a double and returns it. Guarantees to evaluate -sv only once. Use the more efficent C<SvNV> otherwise. +sv only once. Use the more efficient C<SvNV> otherwise. NV SvNVx(SV* sv) @@ -2519,7 +2519,7 @@ Found in file sv.h =item SvPVbytex Like C<SvPV>, but converts sv to byte representation first if necessary. -Guarantees to evalute sv only once; use the more efficient C<SvPVbyte> +Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte> otherwise. @@ -2531,7 +2531,7 @@ Found in file sv.h =item SvPVbytex_force Like C<SvPV_force>, but converts sv to byte representation first if necessary. -Guarantees to evalute sv only once; use the more efficient C<SvPVbyte_force> +Guarantees to evaluate sv only once; use the more efficient C<SvPVbyte_force> otherwise. char* SvPVbytex_force(SV* sv, STRLEN len) @@ -2569,7 +2569,7 @@ Found in file sv.h =item SvPVutf8x Like C<SvPV>, but converts sv to utf8 first if necessary. -Guarantees to evalute sv only once; use the more efficient C<SvPVutf8> +Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8> otherwise. char* SvPVutf8x(SV* sv, STRLEN len) @@ -2580,7 +2580,7 @@ Found in file sv.h =item SvPVutf8x_force Like C<SvPV_force>, but converts sv to utf8 first if necessary. -Guarantees to evalute sv only once; use the more efficient C<SvPVutf8_force> +Guarantees to evaluate sv only once; use the more efficient C<SvPVutf8_force> otherwise. char* SvPVutf8x_force(SV* sv, STRLEN len) @@ -2953,7 +2953,7 @@ Found in file sv.h =item SvUVx Coerces the given SV to an unsigned integer and returns it. Guarantees to -evaluate sv only once. Use the more efficent C<SvUV> otherwise. +evaluate sv only once. Use the more efficient C<SvUV> otherwise. UV SvUVx(SV* sv) @@ -4245,7 +4245,7 @@ $utf8::ToLower, which is stored in lib/unicore/To/Lower.pl, and loaded by SWASHGET, using lib/utf8_heavy.pl. The "special" is a string like "utf8::ToSpecLower", which means -the hash %utf8::ToSpecLower, which is stored in in the same file, +the hash %utf8::ToSpecLower, which is stored in the same file, lib/unicore/To/Lower.pl, and also loaded by SWASHGET. The access to the hash is by Perl_to_utf8_case(). |