diff options
author | Jonny Grant <jg@jguk.org> | 2020-12-12 01:16:22 +0100 |
---|---|---|
committer | Arjun Shankar <arjun@redhat.com> | 2020-12-12 01:16:56 +0100 |
commit | 2ea6af7447f5f254450038870628dc50b8cf11ed (patch) | |
tree | 779e2c389232ecf3d3b80a7da5f7c91faecbb55a /inet | |
parent | 0e00b35704e67c499c3abfbd5b6224a13d38b012 (diff) | |
download | glibc-2ea6af7447f5f254450038870628dc50b8cf11ed.tar.gz |
Fix spelling and grammar in several comments
Diffstat (limited to 'inet')
-rw-r--r-- | inet/aliases.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/inet/aliases.h b/inet/aliases.h index b22ed63831..5722e9d0da 100644 --- a/inet/aliases.h +++ b/inet/aliases.h @@ -25,7 +25,7 @@ __BEGIN_DECLS -/* Structure to represent one entry of the alias data base. */ +/* Structure to represent one entry of the alias database. */ struct aliasent { char *alias_name; @@ -38,13 +38,13 @@ struct aliasent /* Open alias data base files. */ extern void setaliasent (void) __THROW; -/* Close alias data base files. */ +/* Close alias database files. */ extern void endaliasent (void) __THROW; -/* Get the next entry from the alias data base. */ +/* Get the next entry from the alias database. */ extern struct aliasent *getaliasent (void) __THROW; -/* Get the next entry from the alias data base and put it in RESULT_BUF. */ +/* Get the next entry from the alias database and put it in RESULT_BUF. */ extern int getaliasent_r (struct aliasent *__restrict __result_buf, char *__restrict __buffer, size_t __buflen, struct aliasent **__restrict __result) __THROW; |