summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.