diff options
author | James E Keenan <jkeenan@cpan.org> | 2021-06-23 16:31:58 +0000 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2021-06-23 16:31:58 +0000 |
commit | 9fa00226c78c14bc34a562b90346047d2dcdd3b1 (patch) | |
tree | 42872741d50b1ac25494673d6a16e91aafffa824 /ext/GDBM_File | |
parent | 5bc1e5fdd87aa205011512cd1e6cc655bcf677fd (diff) | |
download | perl-9fa00226c78c14bc34a562b90346047d2dcdd3b1.tar.gz |
Correct grammar/spelling problems
As spotted by Tux
Diffstat (limited to 'ext/GDBM_File')
-rw-r--r-- | ext/GDBM_File/GDBM_File.xs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/GDBM_File/GDBM_File.xs b/ext/GDBM_File/GDBM_File.xs index 0125b5dcac..338d51c2a6 100644 --- a/ext/GDBM_File/GDBM_File.xs +++ b/ext/GDBM_File/GDBM_File.xs @@ -147,8 +147,8 @@ output_datum(pTHX_ SV *arg, char *str, int size) #if GDBM_VERSION_MAJOR == 1 && GDBM_VERSION_MINOR < 13 /* Prior to 1.13, only gdbm_fetch set GDBM_ITEM_NOT_FOUND if the requested - key did not exist. Other similar function wouls set GDBM_NO_ERROR instead. - The GDBM_ITEM_NOT_FOUND existeds as early as in 1.7.3 */ + key did not exist. Other similar functions would set GDBM_NO_ERROR instead. + The GDBM_ITEM_NOT_FOUND existed as early as in 1.7.3 */ # define ITEM_NOT_FOUND() (gdbm_errno == GDBM_NO_ERROR || gdbm_errno == GDBM_ITEM_NOT_FOUND) #else # define ITEM_NOT_FOUND() (gdbm_errno == GDBM_ITEM_NOT_FOUND) |