summaryrefslogtreecommitdiff
path: root/regen
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2023-01-10 18:44:03 +0000
committerJames E Keenan <jkeenan@cpan.org>2023-01-11 08:58:50 -0500
commitf91101a0615d2706c3cc4ebc69a428df2363e927 (patch)
tree31e6ebec82cdc997d799e3d37a4372162725dfc6 /regen
parent3f11a2855248134af98ca8d71cf71a3fe736dbae (diff)
downloadperl-f91101a0615d2706c3cc4ebc69a428df2363e927.tar.gz
Correct one character typo appearing in lib/feature.pm
Since lib/feature.pm is a generated file, the actual changes are made in regen/feature.pl, followed by 'make regen' to regenerate lib/feature.pm (and then followed by 'make test_porting') to confirm.
Diffstat (limited to 'regen')
-rwxr-xr-xregen/feature.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/regen/feature.pl b/regen/feature.pl
index d31525367b..0a2e9b985c 100755
--- a/regen/feature.pl
+++ b/regen/feature.pl
@@ -500,7 +500,7 @@ read_only_bottom_close_and_rename($h);
__END__
package feature;
-our $VERSION = '1.78';
+our $VERSION = '1.79';
FEATURES
@@ -788,7 +788,7 @@ warn when you use the feature, unless you have explicitly disabled the warning:
no warnings "experimental::declared_refs";
This allows a reference to a variable to be declared with C<my>, C<state>,
-our C<our>, or localized with C<local>. It is intended mainly for use in
+or C<our>, or localized with C<local>. It is intended mainly for use in
conjunction with the "refaliasing" feature. See L<perlref/Declaring a
Reference to a Variable> for examples.