summaryrefslogtreecommitdiff
path: root/lib/feature.pm
diff options
context:
space:
mode:
authorMatthew Horsfall <wolfsage@gmail.com>2022-02-21 08:39:48 -0500
committerMatthew Horsfall (alh) <wolfsage@gmail.com>2022-02-21 09:29:19 -0500
commit765cd54646655d8fde15f0c1e8dd4f380c6a67cd (patch)
treef943ebfdece262cc61e2c080d08871c5ce0f2043 /lib/feature.pm
parent8432359dfe1d2f9809293629d155ad0aa46d7ace (diff)
downloadperl-765cd54646655d8fde15f0c1e8dd4f380c6a67cd.tar.gz
POD typo fix: suroutine -> subroutine
Diffstat (limited to 'lib/feature.pm')
-rw-r--r--lib/feature.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/feature.pm b/lib/feature.pm
index 9886aa3e77..39a8015405 100644
--- a/lib/feature.pm
+++ b/lib/feature.pm
@@ -5,7 +5,7 @@
package feature;
-our $VERSION = '1.70';
+our $VERSION = '1.71';
our %feature = (
fc => 'feature_fc',
@@ -292,7 +292,7 @@ regardless of what feature declarations are in scope.
=head2 The 'signatures' feature
This enables syntax for declaring subroutine arguments as lexical variables.
-For example, for this suroutine:
+For example, for this subroutine:
sub foo ($left, $right) {
return $left + $right;