From: Nicholas Clark <nick@ccl4.org>
Date: Mon, 22 Jan 2007 19:38:12 +0000 (+0000)
Subject: Fix a typo and some doubled spaces in comments.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c40f158517a2eb8c99b09f2c54334b34b71acd64;p=p5sagit%2Fp5-mst-13.2.git

Fix a typo and some doubled spaces in comments.

p4raw-id: //depot/perl@29922
---

diff --git a/cop.h b/cop.h
index e80f865..518a396 100644
--- a/cop.h
+++ b/cop.h
@@ -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 a13e2f3..88f5f79 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)
diff --git a/sv.h b/sv.h
index 52b3254..d3f69c0 100644
--- a/sv.h
+++ b/sv.h
@@ -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