Skip to content

Commit

Permalink
Correct grammar/spelling problems
Browse files Browse the repository at this point in the history
As spotted by Tux
  • Loading branch information
jkeenan committed Jun 23, 2021
1 parent 5bc1e5f commit 9fa0022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/GDBM_File/GDBM_File.xs
Expand Up @@ -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)
Expand Down

0 comments on commit 9fa0022

Please sign in to comment.