Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix POD typos in NDBM_File, ODBM_File, POSIX #22755

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/NDBM_File/NDBM_File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require Tie::Hash;
require XSLoader;

our @ISA = qw(Tie::Hash);
our $VERSION = "1.17";
our $VERSION = "1.18";

XSLoader::load();

Expand Down Expand Up @@ -114,7 +114,7 @@ portable across platforms.
The GDBM documentation doesn't imply that files from untrusted sources
can be safely used with C<libgdbm>.

Systems that don't use GDBM compatibilty for ndbm support will be
Systems that don't use GDBM compatibility for ndbm support will be
using a platform specific library, possibly inherited from BSD
systems, where it may or may not be safe to use an untrusted file.

Expand Down
4 changes: 2 additions & 2 deletions ext/ODBM_File/ODBM_File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require Tie::Hash;
require XSLoader;

our @ISA = qw(Tie::Hash);
our $VERSION = "1.18";
our $VERSION = "1.19";

XSLoader::load();

Expand Down Expand Up @@ -111,7 +111,7 @@ portable across platforms.
The GDBM documentation doesn't imply that files from untrusted sources
can be safely used with C<libgdbm>.

Systems that don't use GDBM compatibilty for old dbm support will be
Systems that don't use GDBM compatibility for old dbm support will be
using a platform specific library, possibly inherited from BSD
systems, where it may or may not be safe to use an untrusted file.

Expand Down
2 changes: 1 addition & 1 deletion ext/POSIX/lib/POSIX.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

our ($AUTOLOAD, %SIGRT);

our $VERSION = '2.22';
our $VERSION = '2.23';

require XSLoader;

Expand Down
2 changes: 1 addition & 1 deletion ext/POSIX/lib/POSIX.pod
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ succeeds a positive value but is infixed, by replacing the radix
character.

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

=item C<localtime>

Expand Down
Loading