summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Grunauer <marcel@codewerk.com>2000-08-29 03:19:59 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2000-08-28 23:33:39 +0000
commita31a806a8f483dfa4e00e0ac91d9875a8d724cff (patch)
tree43a8fa1b770bda3450ea8206c1fba741b17fea18
parentf8f1ea7c161635bf46b2716d915374193f8dd590 (diff)
downloadperl-a31a806a8f483dfa4e00e0ac91d9875a8d724cff.tar.gz
spellings
Message-Id: <200008282319.BAA29862@gandalf.local> p4raw-id: //depot/perl@6872
-rw-r--r--README.os3902
-rw-r--r--pod/perl5004delta.pod2
-rw-r--r--pod/perldebtut.pod4
-rw-r--r--pod/perlebcdic.pod2
-rw-r--r--pod/perlfunc.pod2
-rw-r--r--pod/perlguts.pod2
-rw-r--r--pod/perlipc.pod2
-rw-r--r--pod/perlthrtut.pod2
-rw-r--r--pod/perlutil.pod2
9 files changed, 10 insertions, 10 deletions
diff --git a/README.os390 b/README.os390
index 1821846f80..571d027687 100644
--- a/README.os390
+++ b/README.os390
@@ -115,7 +115,7 @@ character sets are different. Perl builtin functions that may behave
differently under EBCDIC are mentioned in the perlport.pod document.
OpenEdition (UNIX System Services) does not (yet) support the #! means
-of script invokation.
+of script invocation.
See:
head `whence perldoc`
diff --git a/pod/perl5004delta.pod b/pod/perl5004delta.pod
index 85a8f96161..8cec3aba8a 100644
--- a/pod/perl5004delta.pod
+++ b/pod/perl5004delta.pod
@@ -810,7 +810,7 @@ builtin operations.
When C<use locale> is in effect, the current LC_CTYPE locale is used
for regular expressions and case mapping; LC_COLLATE for string
-ordering; and LC_NUMERIC for numeric formating in printf and sprintf
+ordering; and LC_NUMERIC for numeric formatting in printf and sprintf
(but B<not> in print). LC_NUMERIC is always used in write, since
lexical scoping of formats is problematic at best.
diff --git a/pod/perldebtut.pod b/pod/perldebtut.pod
index 93fa69da13..28ced7d1ec 100644
--- a/pod/perldebtut.pod
+++ b/pod/perldebtut.pod
@@ -327,7 +327,7 @@ our expected output:
While we're here, take a closer look at the 'B<x>' command, it's really useful
and will merrily dump out nested references, complete objects, partial objects
-- justabout whatever you throw at it:
+- just about whatever you throw at it:
Let's make a quick object and x-plode it, first we'll start the the debugger:
it wants some form of input from STDIN, so we give it something non-commital,
@@ -452,7 +452,7 @@ expected output. This is what it does:
Not very consistent! We'll set a breakpoint in the code manually and run it
under the debugger to see what's going on. A breakpoint is a flag, to which
-the debugger will run without interuption, when it reaches the breakpoint, it
+the debugger will run without interruption, when it reaches the breakpoint, it
will stop execution and offer a prompt for further interaction. In normal
use, these debugger commands are completely ignored, and they are safe - if a
little messy, to leave in production code.
diff --git a/pod/perlebcdic.pod b/pod/perlebcdic.pod
index f27a8dea2e..619cb9b82f 100644
--- a/pod/perlebcdic.pod
+++ b/pod/perlebcdic.pod
@@ -992,7 +992,7 @@ ISSN 1523-0309; Multilingual Computing Inc. Sandpoint ID, USA.
Peter Prymmer E<lt>pvhp@best.comE<gt> wrote this in 1999 and 2000
with CCSID 0819 and 0037 help from Chris Leach and
-Andre' Pirard E<lt>A.Pirard@ulg.ac.beE<gt> as well as POSIX-BC
+AndrE<eacute> Pirard E<lt>A.Pirard@ulg.ac.beE<gt> as well as POSIX-BC
help from Thomas Dorner E<lt>Thomas.Dorner@start.deE<gt>.
Thanks also to Philip Newton and Vickie Cooper. Trademarks, registered
trademarks, service marks and registered service marks used in this
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 0235c37fed..5f23b7ea3e 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -2819,7 +2819,7 @@ otherwise it's necessary to protect any leading and trailing whitespace:
$file =~ s#^(\s)#./$1#;
open(FOO, "< $file\0");
-(this may not work on some bizzare filesystems). One should
+(this may not work on some bizarre filesystems). One should
conscientiously choose between the I<magic> and 3-arguments form
of open():
diff --git a/pod/perlguts.pod b/pod/perlguts.pod
index 74b901d7fe..bfdf9facad 100644
--- a/pod/perlguts.pod
+++ b/pod/perlguts.pod
@@ -1994,7 +1994,7 @@ whether the current character in a string is valid UTF8.
As mentioned above, UTF8 uses a variable number of bytes to store a
character. Characters with values 1...128 are stored in one byte, just
like good ol' ASCII. Character 129 is stored as C<v194.129>; this
-contines up to character 191, which is C<v194.191>. Now we've run out of
+continues up to character 191, which is C<v194.191>. Now we've run out of
bits (191 is binary C<10111111>) so we move on; 192 is C<v195.128>. And
so it goes on, moving to three bytes at character 2048.
diff --git a/pod/perlipc.pod b/pod/perlipc.pod
index 47556a5648..6a3d158c48 100644
--- a/pod/perlipc.pod
+++ b/pod/perlipc.pod
@@ -1304,7 +1304,7 @@ with TCP, you'd have to use a different socket handle for each host.
Note that this example does not include any retries and may consequently
fail to contact a reachable host. The most prominent reason for this
is congestion of the queues on the sending host if the number of
-list of hosts to contact is sufficietly large.
+list of hosts to contact is sufficiently large.
=head1 SysV IPC
diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod
index 3a1cf866e2..0b7092b39d 100644
--- a/pod/perlthrtut.pod
+++ b/pod/perlthrtut.pod
@@ -991,7 +991,7 @@ the explanation is much longer than the program.
A complete thread tutorial could fill a book (and has, many times),
but this should get you well on your way. The final authority on how
-Perl's threads behave is the documention bundled with the Perl
+Perl's threads behave is the documentation bundled with the Perl
distribution, but with what we've covered in this article, you should
be well on your way to becoming a threaded Perl expert.
diff --git a/pod/perlutil.pod b/pod/perlutil.pod
index 1b2c178b1f..7b56a17503 100644
--- a/pod/perlutil.pod
+++ b/pod/perlutil.pod
@@ -35,7 +35,7 @@ piped through your favourite pager.
=item L<pod2html|pod2html> and L<pod2latex|pod2latex>
-As well as these two, there are two other convertors: F<pod2html> will
+As well as these two, there are two other converters: F<pod2html> will
produce HTML pages from POD, and F<pod2latex>, which produces LaTeX
files.