about summary refs log tree commit diff
path: root/argp
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 /argp
parent0e00b35704e67c499c3abfbd5b6224a13d38b012 (diff)
downloadglibc-2ea6af7447f5f254450038870628dc50b8cf11ed.tar.gz
glibc-2ea6af7447f5f254450038870628dc50b8cf11ed.tar.xz
glibc-2ea6af7447f5f254450038870628dc50b8cf11ed.zip
Fix spelling and grammar in several comments
Diffstat (limited to 'argp')
-rw-r--r--argp/argp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/argp/argp.h b/argp/argp.h
index a5b861a4d3..2cbc4dcb1b 100644
--- a/argp/argp.h
+++ b/argp/argp.h
@@ -1,4 +1,4 @@
-/* Hierarchial argument parsing, layered over getopt.
+/* Hierarchical argument parsing, layered over getopt.
    Copyright (C) 1995-2020 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Written by Miles Bader <miles@gnu.ai.mit.edu>.
@@ -233,7 +233,7 @@ struct argp
 };
 
 /* Possible KEY arguments to a help filter function.  */
-#define ARGP_KEY_HELP_PRE_DOC	0x2000001 /* Help text preceeding options. */
+#define ARGP_KEY_HELP_PRE_DOC	0x2000001 /* Help text preceding options. */
 #define ARGP_KEY_HELP_POST_DOC	0x2000002 /* Help text following options. */
 #define ARGP_KEY_HELP_HEADER	0x2000003 /* Option header string. */
 #define ARGP_KEY_HELP_EXTRA	0x2000004 /* After all other documentation;
@@ -447,7 +447,7 @@ extern void __argp_help (const struct argp *__restrict __argp,
    parsing routine (thus taking an argp_state structure as the first
    argument).  They may or may not print an error message and exit, depending
    on the flags in STATE -- in any case, the caller should be prepared for
-   them *not* to exit, and should return an appropiate error after calling
+   them *not* to exit, and should return an appropriate error after calling
    them.  [argp_usage & argp_error should probably be called argp_state_...,
    but they're used often enough that they should be short]  */