summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-23 10:36:41 -0600
committerRicardo Signes <rjbs@semiotic.systems>2022-05-24 21:34:38 -0400
commit127c62f832cb2f8b6d55c618bbd1f5c7c95bf902 (patch)
tree994a8c61af7abdef67c99f77c15bb2bd868d7ad6
parent54700c0d575024f07079e3baa1cbd5ee8446a5ea (diff)
downloadperl-127c62f832cb2f8b6d55c618bbd1f5c7c95bf902.tar.gz
perldelta: Grammar fixes
-rw-r--r--pod/perldelta.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 5d25ae1935..06dead657f 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -71,7 +71,7 @@ Classes>.
=head2 Variable length lookbehind is mostly no longer considered experimental
-Prior to this release any form of variable length lookbehind was
+Prior to this release, any form of variable length lookbehind was
considered experimental. With this release the experimental status has
been reduced to cover only lookbehind that contains capturing parenthesis.
This is because it is not clear if
@@ -372,7 +372,7 @@ of the shared string table, as well as increasing the number of times it is
resized as it grows. B<Worse> - in any environment that has "copy on write"
memory for child process (such as a pre-forking server), the memory pages used
for the shared string table rapidly need to be copied as the child process
-manipulates hashes. Hence if most of the shared string table is such keys that
+manipulates hashes. Hence if most of the shared string table is such that keys
are used only in one place, there is no benefit from re-use within the perl
interpreter, but a high cost due to more pages for the OS to copy.