diff options
author | Tom Christiansen <tchrist@perl.com> | 2010-01-04 20:32:51 -0700 |
---|---|---|
committer | Abigail <abigail@abigail.be> | 2010-01-05 09:24:38 +0100 |
commit | e10204135b763e864169cd1f19037fc2f8c37385 (patch) | |
tree | f464a387ef72dad8ba3a19d05a412d9b4464cbaf /pod/perlhack.pod | |
parent | 1a64a5e6c710ac493fe0339fdf240f512a934369 (diff) | |
download | perl-e10204135b763e864169cd1f19037fc2f8c37385.tar.gz |
PATCH: minor typo cleanup of pod/ directory
These are all in the pod/ directory, and only the first is a code fix.
There was also a single lingering ISO 8859-1 encoding that missed the
UTF-8 upconvert. The rest are cleanups for typos, some of which seem
to have been around for a rather long time: spelling errors, incorrect
possessives, and extra, missing, or duplicated words.
If you actually read through, I bet you'll realize what sparked this. :)
--tom
Signed-off-by: Abigail <abigail@abigail.be>
Diffstat (limited to 'pod/perlhack.pod')
-rw-r--r-- | pod/perlhack.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlhack.pod b/pod/perlhack.pod index a964fa8d5d..fb9bdb85b1 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -397,7 +397,7 @@ Configure, build and installation process, as well as the overall portability of the core code rests with the Configure pumpkin - others help out with individual operating systems. -The three files that fall under his/her resposibility are Configure, +The three files that fall under his/her responsibility are Configure, config_h.SH, and Porting/Glossary (and a whole bunch of small related files that are less important here). The Configure pumpkin decides how patches to these are dealt with. Currently, the Configure pumpkin will @@ -2598,7 +2598,7 @@ not perfect, because the below is a compile-time check): #endif How does the HAS_QUUX become defined where it needs to be? Well, if -Foonix happens to be UNIXy enough to be able to run the Configure +Foonix happens to be Unixy enough to be able to run the Configure script, and Configure has been taught about detecting and testing quux(), the HAS_QUUX will be correctly defined. In other platforms, the corresponding configuration step will hopefully do the same. @@ -2699,7 +2699,7 @@ and for Bourne-type shells: PERL_DESTRUCT_LEVEL=2 export PERL_DESTRUCT_LEVEL -or in UNIXy environments you can also use the C<env> command: +or in Unixy environments you can also use the C<env> command: env PERL_DESTRUCT_LEVEL=2 valgrind ./perl -Ilib ... @@ -3010,7 +3010,7 @@ results. =head2 Gprof Profiling -gprof is a profiling tool available in many UNIX platforms, +gprof is a profiling tool available in many Unix platforms, it uses F<statistical time-sampling>. You can build a profiled version of perl called "perl.gprof" by |