summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@semiotic.systems>2022-04-19 09:43:36 -0400
committerRicardo Signes <rjbs@semiotic.systems>2022-05-20 13:59:11 -0400
commitee5e1868ac7c0a719832200cade99b9077dbe3e9 (patch)
tree7941b1dd1aba9416bd0baabed0a8173f533b0934
parente70f3e76d33a569958a37f0b25596e795333b172 (diff)
downloadperl-ee5e1868ac7c0a719832200cade99b9077dbe3e9.tar.gz
perl5360delta: typo corrections from code review
-rw-r--r--pod/perldelta.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 86f2380d79..ae4cadc6c6 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -41,7 +41,7 @@ method calls (like C<$x = new Class;>); the use of a list expression as a hash
key to simulate sparse multidimensional arrays. The specifics of these changes
can be found in L<feature>, but the short version is: this is a bit like having
more C<use strict> turned on, disabling features that cause more trouble than
-they'e worth.
+they're worth.
Furthermore, C<use v5.36> will also enable warnings as if you'd written C<use
warnings>.
@@ -160,7 +160,7 @@ known to have been created as a boolean.
=item builtin::weaken, builtin::unweaken, builtin::is_weak
-These functions will, respectively: weaken a reference; strength a reference;
+These functions will, respectively: weaken a reference; strengthen a reference;
and return whether a reference is weak. (A weak reference is not counted for
garbage collection purposes. See L<perlref>.) These can take the place of
some similar routines in L<Scalar::Util>.
@@ -269,8 +269,8 @@ L</Selected Bug Fixes> section.
@a = sort (); # also a compile-time error
A bare sort used to be a weird way to create an empty list; now it croaks
-at compile time. This is change is intended to free up some of the syntax
-space for possible future enhancements to C<sort>.
+at compile time. This change is intended to free up some of the syntax space
+for possible future enhancements to C<sort>.
=head1 Deprecations