summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorMarcel GrĂ¼nauer <gr@univie.ac.at>2011-05-18 21:56:51 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-05-19 06:18:27 -0700
commit1c2e8ccaafb0b2b10b96f3d2dfb1b3396382ec57 (patch)
treeeef34babebb54a9251bcfee3e81e3165611631af /pod
parentdd3b644602f47f2e7b61ad3bc013f6928ee8244d (diff)
downloadperl-1c2e8ccaafb0b2b10b96f3d2dfb1b3396382ec57.tar.gz
[perl #90306] Fix simple typos
Diffstat (limited to 'pod')
-rw-r--r--pod/perl.pod2
-rw-r--r--pod/perlfunc.pod6
-rw-r--r--pod/perlvar.pod2
3 files changed, 5 insertions, 5 deletions
diff --git a/pod/perl.pod b/pod/perl.pod
index f35b79e474..3976155e28 100644
--- a/pod/perl.pod
+++ b/pod/perl.pod
@@ -146,7 +146,7 @@ For ease of access, the Perl manual has been split up into several sections.
perlhack Perl hackers guide
perlsource Guide to the Perl source tree
- perlinterp Overview of the Perl intepreter source and how it works
+ perlinterp Overview of the Perl interpreter source and how it works
perlhacktut Walk through the creation of a simple C code patch
perlhacktips Tips for Perl core C code hacking
perlpolicy Perl development policies
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 5e7faff446..7aa18d8ae4 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -6214,13 +6214,13 @@ as supported by the compiler used to build Perl:
hh interpret integer as C type "char" or "unsigned char"
on Perl 5.14 or later
h interpret integer as C type "short" or "unsigned short"
- j intepret integer as C type "intmax_t" on Perl 5.14
+ j interpret integer as C type "intmax_t" on Perl 5.14
or later, and only with a C99 compiler (unportable)
l interpret integer as C type "long" or "unsigned long"
q, L, or ll interpret integer as C type "long long", "unsigned long long",
or "quad" (typically 64-bit integers)
- t intepret integer as C type "ptrdiff_t" on Perl 5.14 or later
- z intepret integer as C type "size_t" on Perl 5.14 or later
+ t interpret integer as C type "ptrdiff_t" on Perl 5.14 or later
+ z interpret integer as C type "size_t" on Perl 5.14 or later
As of 5.14, none of these raises an exception if they are not supported on
your platform. However, if warnings are enabled, a warning of the
diff --git a/pod/perlvar.pod b/pod/perlvar.pod
index 39bab245bb..aa24f2720e 100644
--- a/pod/perlvar.pod
+++ b/pod/perlvar.pod
@@ -2022,7 +2022,7 @@ Mnemonic: Where was the syntax error "at"?
=head2 Deprecated and removed variables
Deprecating a variable announces the intent of the perl maintainers to
-eventually remove the variable from the langauge. It may still be
+eventually remove the variable from the language. It may still be
available despite its status. Using a deprecated variable triggers
a warning.