about summary refs log tree commit diff
path: root/inet
diff options
context:
space:
mode:
authorJonny Grant <jg@jguk.org>2020-12-12 01:16:22 +0100
committerArjun Shankar <arjun@redhat.com>2020-12-12 01:16:56 +0100
commit2ea6af7447f5f254450038870628dc50b8cf11ed (patch)
tree779e2c389232ecf3d3b80a7da5f7c91faecbb55a /inet
parent0e00b35704e67c499c3abfbd5b6224a13d38b012 (diff)
downloadglibc-2ea6af7447f5f254450038870628dc50b8cf11ed.tar.gz
glibc-2ea6af7447f5f254450038870628dc50b8cf11ed.tar.xz
glibc-2ea6af7447f5f254450038870628dc50b8cf11ed.zip
Fix spelling and grammar in several comments
Diffstat (limited to 'inet')
-rw-r--r--inet/aliases.h8
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;