summaryrefslogtreecommitdiff
path: root/lib
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 /lib
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 'lib')
-rw-r--r--lib/feature.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/feature.pm b/lib/feature.pm
index 3f8f89dadb..80b30b19f3 100644
--- a/lib/feature.pm
+++ b/lib/feature.pm
@@ -4,7 +4,7 @@
# Any changes made here will be lost!
package feature;
-our $VERSION = '1.78';
+our $VERSION = '1.79';
our %feature = (
fc => 'feature_fc',
@@ -366,7 +366,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.