summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Signes <rjbs@semiotic.systems>2021-10-30 14:48:51 -0400
committerRicardo Signes <rjbs@semiotic.systems>2021-11-02 14:19:43 -0400
commitbbe4b56e549d548cc86147e87768dda48539eabc (patch)
treeb8e774753776217fec9cc2d0d5299865257cf617
parent84a3e0caf345ea97ffe0d166f925421a934d2398 (diff)
downloadperl-bbe4b56e549d548cc86147e87768dda48539eabc.tar.gz
feature updates: tweaks from code review
-rw-r--r--pod/perldelta.pod2
-rw-r--r--pod/perlfunc.pod2
2 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 8d6d464419..35831e1fb8 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -29,7 +29,7 @@ here, but most should go in the L</Performance Enhancements> section.
=head2 C<use v5.36> now disables bareword_filehandles and indirect
-The :5.36 bundle, loaded by C<use v5.36>, no longer includes
+The C<:5.36> bundle, loaded by C<use v5.36>, no longer includes
C<bareword_filehandles> or C<indirect>, meaning that these discouraged forms of
syntax will not be allowed within the scope of that version declaration.
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index bcaaa79dce..fbe465bbf5 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -4905,7 +4905,7 @@ Then you can use C<FH> as the filehandle, in C<< close FH >> and C<<
<FH> >> and so on. Note that it's a global variable, so this form is
not recommended when dealing with filehandles other than Perl's built-in ones
(e.g. STDOUT and STDIN). In fact, using a bareword for the filehandle is
-I<illegal> when the C<bareword_filehandles> feature has been disabled. This
+an error when the C<bareword_filehandles> feature has been disabled. This
feature is disabled by default when in the scope of C<use v5.36.0> or later.