From: Marcel Grunauer Date: Tue, 29 Aug 2000 01:19:59 +0000 (+0200) Subject: spellings X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a31a806a8f483dfa4e00e0ac91d9875a8d724cff;p=p5sagit%2Fp5-mst-13.2.git spellings Message-Id: <200008282319.BAA29862@gandalf.local> p4raw-id: //depot/perl@6872 --- diff --git a/README.os390 b/README.os390 index 1821846..571d027 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 85a8f96..8cec3ab 100644 --- a/pod/perl5004delta.pod +++ b/pod/perl5004delta.pod @@ -810,7 +810,7 @@ builtin operations. When C 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 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 93fa69d..28ced7d 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' 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 f27a8de..619cb9b 100644 --- a/pod/perlebcdic.pod +++ b/pod/perlebcdic.pod @@ -992,7 +992,7 @@ ISSN 1523-0309; Multilingual Computing Inc. Sandpoint ID, USA. Peter Prymmer Epvhp@best.comE wrote this in 1999 and 2000 with CCSID 0819 and 0037 help from Chris Leach and -Andre' Pirard EA.Pirard@ulg.ac.beE as well as POSIX-BC +AndrE Pirard EA.Pirard@ulg.ac.beE as well as POSIX-BC help from Thomas Dorner EThomas.Dorner@start.deE. 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 0235c37..5f23b7e 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 and 3-arguments form of open(): diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 74b901d..bfdf9fa 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; this -contines up to character 191, which is C. Now we've run out of +continues up to character 191, which is C. Now we've run out of bits (191 is binary C<10111111>) so we move on; 192 is C. And so it goes on, moving to three bytes at character 2048. diff --git a/pod/perlipc.pod b/pod/perlipc.pod index 47556a5..6a3d158 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 3a1cf86..0b7092b 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 1b2c178..7b56a17 100644 --- a/pod/perlutil.pod +++ b/pod/perlutil.pod @@ -35,7 +35,7 @@ piped through your favourite pager. =item L and L -As well as these two, there are two other convertors: F will +As well as these two, there are two other converters: F will produce HTML pages from POD, and F, which produces LaTeX files.