diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-22 19:38:12 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-22 19:38:12 +0000 |
commit | c40f158517a2eb8c99b09f2c54334b34b71acd64 (patch) | |
tree | f099dd0c8c9bde651c037b6863930be72b92b0c2 | |
parent | e40b81a3dd247b1a29fc78399677b77b78b5f183 (diff) | |
download | perl-c40f158517a2eb8c99b09f2c54334b34b71acd64.tar.gz |
Fix a typo and some doubled spaces in comments.
p4raw-id: //depot/perl@29922
-rw-r--r-- | cop.h | 2 | ||||
-rw-r--r-- | pod/perlapi.pod | 4 | ||||
-rw-r--r-- | sv.h | 6 |
3 files changed, 6 insertions, 6 deletions
@@ -716,7 +716,7 @@ L<perlcall>. #define G_KEEPERR 16 /* Append errors to $@, don't overwrite it */ #define G_NODEBUG 32 /* Disable debugging at toplevel. */ #define G_METHOD 64 /* Calling method. */ -#define G_FAKINGEVAL 256 /* Faking en eval context for call_sv or +#define G_FAKINGEVAL 256 /* Faking an eval context for call_sv or fold_constants. */ /* flag bits for PL_in_eval */ diff --git a/pod/perlapi.pod b/pod/perlapi.pod index a13e2f30e8..88f5f791d8 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -3873,7 +3873,7 @@ Found in file sv.h =item SvIV X<SvIV> -Coerces the given SV to an integer and returns it. See C<SvIVx> for a +Coerces the given SV to an integer and returns it. See C<SvIVx> for a version which guarantees to evaluate sv only once. IV SvIV(SV* sv) @@ -4043,7 +4043,7 @@ Found in file sv.h =item SvNV X<SvNV> -Coerce the given SV to a double and return it. See C<SvNVx> for a version +Coerce the given SV to a double and return it. See C<SvNVx> for a version which guarantees to evaluate sv only once. NV SvNV(SV* sv) @@ -331,7 +331,7 @@ perform the upgrade if necessary. See C<svtype>. means that a hv_aux struct is present after the main array */ #define SVf_BREAK 0x04000000 /* refcnt is artificially low - used by - SV's in final arena cleanup */ + SV's in final arena cleanup */ #define SVf_READONLY 0x08000000 /* may not be modified */ @@ -1561,7 +1561,7 @@ the SV if the SV does not contain a string. The SV may cache the stringified form becoming C<SvPOK>. Handles 'get' magic. =for apidoc Am|IV|SvIV|SV* sv -Coerces the given SV to an integer and returns it. See C<SvIVx> for a +Coerces the given SV to an integer and returns it. See C<SvIVx> for a version which guarantees to evaluate sv only once. =for apidoc Am|IV|SvIV_nomg|SV* sv @@ -1572,7 +1572,7 @@ Coerces the given SV to an integer and returns it. Guarantees to evaluate sv only once. Use the more efficient C<SvIV> otherwise. =for apidoc Am|NV|SvNV|SV* sv -Coerce the given SV to a double and return it. See C<SvNVx> for a version +Coerce the given SV to a double and return it. See C<SvNVx> for a version which guarantees to evaluate sv only once. =for apidoc Am|NV|SvNVx|SV* sv |