Spell check fixes in CPAN
H.Merijn Brand [Mon, 7 Jun 2010 10:17:09 +0000 (12:17 +0200)]
already fixed upstream

cpan/CPANPLUS-Dist-Build/lib/CPANPLUS/Dist/Build.pm
cpan/CPANPLUS/lib/CPANPLUS/Dist/MM.pm
cpan/IPC-Cmd/lib/IPC/Cmd.pm

index 0f27639..7f99225 100644 (file)
@@ -98,7 +98,7 @@ BOOL indicating if the C<Build test> command was successful.
 
 =item C<prepared ()>
 
-BOOL indicating if the C<prepare> call exited succesfully
+BOOL indicating if the C<prepare> call exited successfully
 This gets set after C<perl Build.PL>
 
 =item C<distdir ()>
@@ -108,7 +108,7 @@ set after a call to C<prepare>.
 
 =item C<created ()>
 
-BOOL indicating if the C<create> call exited succesfully. This gets
+BOOL indicating if the C<create> call exited successfully. This gets
 set after C<Build> and C<Build test>.
 
 =item C<installed ()>
index be65cd4..5787f1d 100644 (file)
@@ -78,7 +78,7 @@ successful.
 
 =item prepared ()
 
-BOOL indicating if the C<prepare> call exited succesfully
+BOOL indicating if the C<prepare> call exited successfully
 This gets set after C<perl Makefile.PL>
 
 =item distdir ()
@@ -88,7 +88,7 @@ set after a call to C<prepare>.
 
 =item created ()
 
-BOOL indicating if the C<create> call exited succesfully. This gets
+BOOL indicating if the C<create> call exited successfully. This gets
 set after C<make> and C<make test>.
 
 =item installed ()
index 873a17b..80ecbe1 100644 (file)
@@ -516,7 +516,7 @@ sub open3_run {
 
 C<run_forked> is used to execute some program or a coderef,
 optionally feed it with some input, get its return code
-and output (both stdout and stderr into seperate buffers).
+and output (both stdout and stderr into separate buffers).
 In addition it allows to terminate the program
 which take too long to finish.
 
@@ -1532,7 +1532,7 @@ You can use it as follows:
   my $cmd = q[echo ] . QUOTE . q[foo bar] . QUOTE;
 
 This makes sure that C<foo bar> is treated as a string, rather than two
-seperate arguments to the C<echo> function.
+separate arguments to the C<echo> function.
 
 __END__