diff options
author | Samanta Navarro <ferivoz@riseup.net> | 2020-10-03 12:39:08 +0000 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2020-10-03 10:40:40 -0400 |
commit | f1460a6600d0790c237adf97bee973eae35630bf (patch) | |
tree | a43dc647d0280e8df3fc08729e7b48ed7d6a7182 /regen | |
parent | 0df722d69378fb3b3df5c8d7746122138fcdc5a9 (diff) | |
download | perl-f1460a6600d0790c237adf97bee973eae35630bf.tar.gz |
Fix typos
For: https://github.com/Perl/perl5/pull/18201
Committer: Samanta Navarro is now a Perl author.
To keep 'make test_porting' happy: Increment $VERSION in several files.
Regenerate uconfig.h via './perl -Ilib regen/uconfig_h.pl'.
Diffstat (limited to 'regen')
-rw-r--r-- | regen/reentr.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/regen/reentr.pl b/regen/reentr.pl index ba2e1c8fa6..9d93fdf1ff 100644 --- a/regen/reentr.pl +++ b/regen/reentr.pl @@ -192,7 +192,7 @@ my %seend; # the type of this function's "D" my %seenm; # all the types my %seenu; # the length of the argument list of this function -while (<DATA>) { # Read in the protoypes. +while (<DATA>) { # Read in the prototypes. next if /^\s+$/; chomp; my ($func, $hdr, $type, @p) = split(/\s*\|\s*/, $_, -1); |