aboutsummaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2021-11-18 14:25:42 +0200
committerSergey Poznyakoff <gray@gnu.org>2021-11-18 14:25:42 +0200
commitcdc6b5fca3860a5f0466fc646fd99372e50af9f4 (patch)
tree88146de4fc0eb03d900a58fb289c6ac93b8edd4d /compat
parentc6c8162e6d81fdd5994007f4407de4305f4778bf (diff)
downloadgdbm-cdc6b5fca3860a5f0466fc646fd99372e50af9f4.tar.gz
gdbm-cdc6b5fca3860a5f0466fc646fd99372e50af9f4.tar.bz2
Fix typos
Diffstat (limited to 'compat')
-rw-r--r--compat/dbmdelete.c2
-rw-r--r--compat/dbminit.c2
-rw-r--r--compat/dbmopen.c4
-rw-r--r--compat/delete.c2
-rw-r--r--compat/seq.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/compat/dbmdelete.c b/compat/dbmdelete.c
index 631d9f6..ddebb7b 100644
--- a/compat/dbmdelete.c
+++ b/compat/dbmdelete.c
@@ -1,5 +1,5 @@
/* dbmdelete.c - Remove the key and its associated data from the database.
- This is the NDBM unix interface name. */
+ This is the NDBM UNIX interface name. */
/* This file is part of GDBM, the GNU data base manager.
Copyright (C) 1990-2021 Free Software Foundation, Inc.
diff --git a/compat/dbminit.c b/compat/dbminit.c
index d8af045..81bad63 100644
--- a/compat/dbminit.c
+++ b/compat/dbminit.c
@@ -25,7 +25,7 @@ DBM *_gdbm_file;
/* Initialize dbm system. FILE is a pointer to the file name. In
standard dbm, the database is found in files called FILE.pag and
- FILE.dir. To make gdbm compatable with dbm using the dbminit call,
+ FILE.dir. To make gdbm compatible with dbm using the dbminit call,
the same file names are used. Specifically, dbminit will use the file
name FILE.pag in its call to gdbm open. If the file (FILE.pag) has a
size of zero bytes, a file initialization procedure is performed,
diff --git a/compat/dbmopen.c b/compat/dbmopen.c
index 1c2e4b0..c89ce0f 100644
--- a/compat/dbmopen.c
+++ b/compat/dbmopen.c
@@ -178,7 +178,7 @@ ndbm_open_dir_file (const char *base, int pagfd, int mode)
/* Initialize ndbm system. FILE is a pointer to the file name. In
standard dbm, the database is found in files called FILE.pag and
- FILE.dir. To make gdbm compatable with dbm using the dbminit call,
+ FILE.dir. To make gdbm compatible with dbm using the dbminit call,
the same file names are used. Specifically, dbminit will use the file
name FILE.pag in its call to gdbm open. If the file (FILE.pag) has a
size of zero bytes, a file initialization procedure is performed,
@@ -194,7 +194,7 @@ ndbm_open_dir_file (const char *base, int pagfd, int mode)
FLAGS and MODE are the same as for the open(2) call. This call will
look at the FLAGS and decide what call to make to gdbm_open. For
FLAGS == O_RDONLY, it will be a GDBM_READER, if FLAGS == O_RDWR|O_CREAT,
- it will be a GDBM_WRCREAT (creater and writer) and if the FLAGS == O_RDWR,
+ it will be a GDBM_WRCREAT (creator and writer) and if the FLAGS == O_RDWR,
it will be a GDBM_WRITER and if FLAGS contain O_TRUNC then it will be
a GDBM_NEWDB. The O_CLOEXEC bit raises GDBM_CLOEXEC flag.
All other values of FLAGS are ignored. */
diff --git a/compat/delete.c b/compat/delete.c
index 152c094..5b39f5f 100644
--- a/compat/delete.c
+++ b/compat/delete.c
@@ -1,5 +1,5 @@
/* delete.c - Remove the key and its associated data from the database.
- This is the original unix interface name. */
+ This is the original UNIX interface name. */
/* This file is part of GDBM, the GNU data base manager.
Copyright (C) 1990-2021 Free Software Foundation, Inc.
diff --git a/compat/seq.c b/compat/seq.c
index 534d662..2f48f10 100644
--- a/compat/seq.c
+++ b/compat/seq.c
@@ -1,5 +1,5 @@
/* seq.c - This is the sequential visit of the database. This defines two
- user-visable routines that are used together. This is the DBM interface. */
+ user-visible routines that are used together. This is the DBM interface. */
/* This file is part of GDBM, the GNU data base manager.
Copyright (C) 1990-2021 Free Software Foundation, Inc.

Return to:

Send suggestions and report system problems to the System administrator.