summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrian d foy <brian.d.foy@gmail.com>2011-04-28 09:57:29 -0500
committerbrian d foy <brian.d.foy@gmail.com>2011-04-28 09:57:29 -0500
commitde4f8d364aa95e12b25e9978893f55b3632984f6 (patch)
treed96b07a8136932d2e47b3acb4e1e7be74f59cd04
parentbc9665a0a3121c5118b17d2b75bd707505a416c1 (diff)
downloadperl-briandfoy/poddupes.tar.gz
de-dupe some words in the docsbriandfoy/poddupes
-rw-r--r--README.aix2
-rw-r--r--README.macos2
-rw-r--r--README.os22
-rw-r--r--README.os3902
-rw-r--r--README.solaris2
-rw-r--r--README.win322
-rw-r--r--pod/perlfaq4.pod2
-rw-r--r--pod/perlfaq5.pod2
-rw-r--r--pod/perlop.pod2
9 files changed, 9 insertions, 9 deletions
diff --git a/README.aix b/README.aix
index 8f56e2fa6b..5c6cb62120 100644
--- a/README.aix
+++ b/README.aix
@@ -457,7 +457,7 @@ You may get a warning when doing a threaded build:
between types "unsigned char*" and "const void*" is not allowed.
The exact line number may vary, but if the warning (W) comes from a line
-line this
+this:
hent = PerlSock_gethostbyaddr(addr, (Netdb_hlen_t) addrlen, addrtype);
diff --git a/README.macos b/README.macos
index 8c0a66fa60..e6c6442df8 100644
--- a/README.macos
+++ b/README.macos
@@ -19,7 +19,7 @@ Mac OS X.
=head1 DESCRIPTION
-The port of Perl to to Mac OS was officially removed as of Perl 5.12,
+The port of Perl to Mac OS was officially removed as of Perl 5.12,
though the last offical production release of MacPerl corresponded to
Perl 5.6. While Perl 5.10 included the port to Mac OS, ExtUtils::MakeMaker,
a core part of Perl's module installation infrastructure officially dropped support for Mac OS in April 2004.
diff --git a/README.os2 b/README.os2
index 56d8759ec0..ee5d52ba0e 100644
--- a/README.os2
+++ b/README.os2
@@ -1223,7 +1223,7 @@ necessary external C libraries from F<.lib> format to F<.a> format: run one of
emximp -o foo.a foo.lib
whichever is appropriate.) Also, make sure that the DLLs for external
-libraries are usable with with executables compiled without C<-Zmtd> options.
+libraries are usable with executables compiled without C<-Zmtd> options.
When you are sure that only a few subdirectories
lead to failures, you may want to add C<-j4> option to C<make> to speed up
diff --git a/README.os390 b/README.os390
index 4229e2b317..689f6f54ff 100644
--- a/README.os390
+++ b/README.os390
@@ -351,7 +351,7 @@ The problem can be further examined in a roughly equivalent C program:
=head2 Modules and Extensions for Perl on OS/390
-Pure pure (that is non xs) modules may be installed via the usual:
+Pure (that is non xs) modules may be installed via the usual:
perl Makefile.PL
make
diff --git a/README.solaris b/README.solaris
index 427e08de6e..64a9f18154 100644
--- a/README.solaris
+++ b/README.solaris
@@ -612,7 +612,7 @@ and dies. Therefore the SunOS 4.1 hints file explicitly sets the
ld to be /usr/bin/ld.
As of Perl 5.8.1 the dynamic loading of libraries (DynaLoader, XSLoader)
-also seems to have become broken in in SunOS 4.x. Therefore the default
+also seems to have become broken in SunOS 4.x. Therefore the default
is to build Perl statically.
Running the test suite in SunOS 4.1 is a bit tricky since the
diff --git a/README.win32 b/README.win32
index cbd42e7678..b262f77ad9 100644
--- a/README.win32
+++ b/README.win32
@@ -849,7 +849,7 @@ find a mailer on your system).
Norton AntiVirus interferes with the build process, particularly if
set to "AutoProtect, All Files, when Opened". Unlike large applications
the perl build process opens and modifies a lot of files. Having the
-the AntiVirus scan each and every one slows build the process significantly.
+AntiVirus scan each and every one slows build the process significantly.
Worse, with PERLIO=stdio the build process fails with peculiar messages
as the virus checker interacts badly with miniperl.exe writing configure
files (it seems to either catch file part written and treat it as suspicious,
diff --git a/pod/perlfaq4.pod b/pod/perlfaq4.pod
index 392ed97c2e..6420812a17 100644
--- a/pod/perlfaq4.pod
+++ b/pod/perlfaq4.pod
@@ -1569,7 +1569,7 @@ such as C<push>, C<pop>, C<shift>, C<unshift>, or C<splice> to do
that.
Sometimes, however, linked lists can be useful in situations where you
-want to "shard" an array so you have have many small arrays instead of
+want to "shard" an array so you have many small arrays instead of
a single big array. You can keep arrays longer than Perl's largest
array index, lock smaller arrays separately in threaded programs,
reallocate less memory, or quickly insert elements in the middle of
diff --git a/pod/perlfaq5.pod b/pod/perlfaq5.pod
index 1866a034a8..5c91161fd9 100644
--- a/pod/perlfaq5.pod
+++ b/pod/perlfaq5.pod
@@ -1132,7 +1132,7 @@ Since you don't necessarily have to load the data, mmap-ing can be
very fast and may not increase your memory footprint.
If you want to load the entire file, you can use the C<File::Slurp>
-module to do it in one one simple and efficient step:
+module to do it in one simple and efficient step:
use File::Slurp;
diff --git a/pod/perlop.pod b/pod/perlop.pod
index 2595e21451..90c54f76aa 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -1160,7 +1160,7 @@ works on platforms that have a native encoding currently of either ASCII/Latin1
or EBCDIC, each of which allow specification of 256 characters. In general, if
the number is 255 (0xFF, 0377) or below, Perl interprets this in the platform's
native encoding. If the number is 256 (0x100, 0400) or above, Perl interprets
-it as as a Unicode code point and the result is the corresponding Unicode
+it as a Unicode code point and the result is the corresponding Unicode
character. For example C<\x{50}> and C<\o{120}> both are the number 80 in
decimal, which is less than 256, so the number is interpreted in the native
character set encoding. In ASCII the character in the 80th position (indexed