summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorKeith Thompson <kst@mib.org>2011-07-29 17:17:00 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-07-31 13:21:17 -0700
commit7698aede74509727f7bca31c58fc7a53b182315d (patch)
tree64b172a6f17739c4233a988700ac2d95d17d6c92 /pod/perlfunc.pod
parentdcfe4a1a1f7d8d2807eecaeae5cb1d84d060af3c (diff)
downloadperl-7698aede74509727f7bca31c58fc7a53b182315d.tar.gz
Fix typos in several pod/perl*.pod files
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 5255c4183a..f73026b78d 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -4014,7 +4014,7 @@ count. A numeric repeat count may optionally be enclosed in brackets, as
in C<pack("C[80]", @arr)>. The repeat count gobbles that many values from
the LIST when used with all format types other than C<a>, C<A>, C<Z>, C<b>,
C<B>, C<h>, C<H>, C<@>, C<.>, C<x>, C<X>, and C<P>, where it means
-something else, dscribed below. Supplying a C<*> for the repeat count
+something else, described below. Supplying a C<*> for the repeat count
instead of a number means to use however many items are left, except for:
=over
@@ -6006,7 +6006,7 @@ sometimes saying the opposite, for example) the results are not
well-defined.
Because C<< <=> >> returns C<undef> when either operand is C<NaN>
-(not-a-number), and laso because C<sort> raises an exception unless the
+(not-a-number), and also because C<sort> raises an exception unless the
result of a comparison is defined, be careful when sorting with a
comparison function like C<< $a <=> $b >> any lists that might contain a
C<NaN>. The following example takes advantage that C<NaN != NaN> to
@@ -6094,7 +6094,7 @@ specified.
A pattern matching the empty string (not to be confused with
an empty pattern C<//>, which is just one member of the set of patterns
-matching the epmty string), splits EXPR into individual
+matching the empty string), splits EXPR into individual
characters. For example:
print join(':', split(/ */, 'hi there')), "\n";
@@ -6358,7 +6358,7 @@ For example:
printf '<%.1e>', 10; # prints "<1.0e+01>"
For "g" and "G", this specifies the maximum number of digits to show,
-including thoe prior to the decimal point and those after it; for
+including those prior to the decimal point and those after it; for
example:
# These examples are subject to system-specific variation.