diff options
author | Alexandr Savca <alexandr.savca89@gmail.com> | 2018-10-09 13:26:36 +0300 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2018-10-09 09:34:08 -0400 |
commit | ab473f03f7b27ae267ddf8126e0b91ea1f3eef5e (patch) | |
tree | 7291a48985d6e51d27e0b2bbe17637a7646dd91d /lib | |
parent | b00627d0013d067e2f0c15c7024a570ada534c4d (diff) | |
download | perl-ab473f03f7b27ae267ddf8126e0b91ea1f3eef5e.tar.gz |
fix typos
Committer: For porting tests: Update $VERSION in 4 files.
Run:
./perl -Ilib regen/mk_invlists.pl
./perl -Ilib regen/regcharclass.pl
Diffstat (limited to 'lib')
-rw-r--r-- | lib/File/Copy.pm | 4 | ||||
-rw-r--r-- | lib/Internals.pod | 2 | ||||
-rw-r--r-- | lib/Unicode/UCD.pm | 4 | ||||
-rw-r--r-- | lib/bytes.pm | 4 | ||||
-rw-r--r-- | lib/perl5db.pl | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/lib/File/Copy.pm b/lib/File/Copy.pm index b796451e37..63609cc28e 100644 --- a/lib/File/Copy.pm +++ b/lib/File/Copy.pm @@ -24,7 +24,7 @@ sub syscopy; sub cp; sub mv; -$VERSION = '2.33'; +$VERSION = '2.34'; require Exporter; @ISA = qw(Exporter); @@ -501,7 +501,7 @@ $! will be set if an error was encountered. Before calling copy() or move() on a filehandle, the caller should close or flush() the file to avoid writes being lost. Note that this is the case even for move(), because it may actually copy the file, -depending on the OS-specific inplementation, and the underlying +depending on the OS-specific implementation, and the underlying filesystem(s). =head1 AUTHOR diff --git a/lib/Internals.pod b/lib/Internals.pod index 4a1144afd6..454ab0deb5 100644 --- a/lib/Internals.pod +++ b/lib/Internals.pod @@ -59,7 +59,7 @@ each internal variable type. =item hv_clear_placeholders(%hash) Clear any placeholders from a locked hash. Should not be used directly. -You should use the wrapper functions providewd by Hash::Util instead. +You should use the wrapper functions provided by Hash::Util instead. As of 5.25 also available as C< Hash::Util::_clear_placeholders(%hash) > =back diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm index 0bb966704a..1f04bca038 100644 --- a/lib/Unicode/UCD.pm +++ b/lib/Unicode/UCD.pm @@ -5,7 +5,7 @@ use warnings; no warnings 'surrogate'; # surrogates can be inputs to this use charnames (); -our $VERSION = '0.71'; +our $VERSION = '0.72'; require Exporter; @@ -2091,7 +2091,7 @@ sub prop_aliases ($) { # as a key into another hash. The whole concept is for memory # savings, as the second hash doesn't have to have all the # combinations. Actually, there are two hashes that do the - # converstion. One is used in utf8_heavy.pl (stored in Heavy.pl) for + # conversion. One is used in utf8_heavy.pl (stored in Heavy.pl) for # looking up properties matchable in regexes. This function needs to # access string properties, which aren't available in regexes, so a # second conversion hash is made for them (stored in UCD.pl). Look in diff --git a/lib/bytes.pm b/lib/bytes.pm index bc4304a509..8c7a2620a5 100644 --- a/lib/bytes.pm +++ b/lib/bytes.pm @@ -1,6 +1,6 @@ package bytes; -our $VERSION = '1.06'; +our $VERSION = '1.07'; $bytes::hint_bits = 0x00000008; @@ -72,7 +72,7 @@ non-destructively examine characters' individual bytes. Just insert this pragma temporarily, and remove it after the debugging is finished. The original usage can be accomplished by explicit (rather than this pragma's -implict) encoding using the L<Encode> module: +implicit) encoding using the L<Encode> module: use Encode qw/encode/; diff --git a/lib/perl5db.pl b/lib/perl5db.pl index ecc49a814d..39f76f35fe 100644 --- a/lib/perl5db.pl +++ b/lib/perl5db.pl @@ -529,7 +529,7 @@ BEGIN { use vars qw($VERSION $header); # bump to X.XX in blead, only use X.XX_XX in maint -$VERSION = '1.53'; +$VERSION = '1.54'; $header = "perl5db.pl version $VERSION"; @@ -2931,7 +2931,7 @@ and then we look up the line in the magical C<%dbline> hash. =head4 C<-> - back one window We change C<$start> to be one window back; if we go back past the first line, -we set it to be the first line. We ser C<$incr> to put us back at the +we set it to be the first line. We set C<$incr> to put us back at the currently-executing line, and then put a C<l $start +> (list one window from C<$start>) in C<$cmd> to be executed later. |