Skip to content

Commit 541aeef

Browse files
committed
fix POD typos in NDBM_File, ODBM_File, POSIX
Fixes #22737 (and part of #22735).
1 parent 8ee3310 commit 541aeef

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ext/NDBM_File/NDBM_File.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require Tie::Hash;
77
require XSLoader;
88

99
our @ISA = qw(Tie::Hash);
10-
our $VERSION = "1.17";
10+
our $VERSION = "1.18";
1111

1212
XSLoader::load();
1313

@@ -114,7 +114,7 @@ portable across platforms.
114114
The GDBM documentation doesn't imply that files from untrusted sources
115115
can be safely used with C<libgdbm>.
116116
117-
Systems that don't use GDBM compatibilty for ndbm support will be
117+
Systems that don't use GDBM compatibility for ndbm support will be
118118
using a platform specific library, possibly inherited from BSD
119119
systems, where it may or may not be safe to use an untrusted file.
120120

ext/ODBM_File/ODBM_File.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require Tie::Hash;
77
require XSLoader;
88

99
our @ISA = qw(Tie::Hash);
10-
our $VERSION = "1.18";
10+
our $VERSION = "1.19";
1111

1212
XSLoader::load();
1313

@@ -111,7 +111,7 @@ portable across platforms.
111111
The GDBM documentation doesn't imply that files from untrusted sources
112112
can be safely used with C<libgdbm>.
113113
114-
Systems that don't use GDBM compatibilty for old dbm support will be
114+
Systems that don't use GDBM compatibility for old dbm support will be
115115
using a platform specific library, possibly inherited from BSD
116116
systems, where it may or may not be safe to use an untrusted file.
117117

ext/POSIX/lib/POSIX.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44

55
our ($AUTOLOAD, %SIGRT);
66

7-
our $VERSION = '2.22';
7+
our $VERSION = '2.23';
88

99
require XSLoader;
1010

ext/POSIX/lib/POSIX.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ succeeds a positive value but is infixed, by replacing the radix
10461046
character.
10471047

10481048
Prior to Perl v5.37.7, empty string fields and numeric fields with value
1049-
-1 were omittted from the returned hash.
1049+
-1 were omitted from the returned hash.
10501050

10511051
=item C<localtime>
10521052

0 commit comments

Comments
 (0)