diff options
author | Matthew Horsfall <wolfsage@gmail.com> | 2022-02-21 08:39:48 -0500 |
---|---|---|
committer | Matthew Horsfall (alh) <wolfsage@gmail.com> | 2022-02-21 09:29:19 -0500 |
commit | 765cd54646655d8fde15f0c1e8dd4f380c6a67cd (patch) | |
tree | f943ebfdece262cc61e2c080d08871c5ce0f2043 | |
parent | 8432359dfe1d2f9809293629d155ad0aa46d7ace (diff) | |
download | perl-765cd54646655d8fde15f0c1e8dd4f380c6a67cd.tar.gz |
POD typo fix: suroutine -> subroutine
-rw-r--r-- | lib/feature.pm | 4 | ||||
-rwxr-xr-x | regen/feature.pl | 4 |
2 files changed, 4 insertions, 4 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; diff --git a/regen/feature.pl b/regen/feature.pl index 49b4a4994e..7f17e1ef7f 100755 --- a/regen/feature.pl +++ b/regen/feature.pl @@ -486,7 +486,7 @@ read_only_bottom_close_and_rename($h); __END__ package feature; -our $VERSION = '1.70'; +our $VERSION = '1.71'; FEATURES @@ -703,7 +703,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; |