diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-12-11 02:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-12-11 02:00:00 +0000 |
commit | 14ef9c185b79f55f8221a29accd8d3326367102a (patch) | |
tree | 6ce66c4fe96312eea50c0b0aa4107405e0268aca /misc | |
parent | 720480934ab9107714f1ffc29222dfb5d3bc5b1d (diff) | |
download | glibc-14ef9c185b79f55f8221a29accd8d3326367102a.zip glibc-14ef9c185b79f55f8221a29accd8d3326367102a.tar.gz glibc-14ef9c185b79f55f8221a29accd8d3326367102a.tar.bz2 |
treewide: fix incorrect spelling of indices in comments
Replace 'indeces' with 'indices', the most annoying of these typos were
those found in elf.h which is a public header file copied to other
projects.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/hsearch_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index a9905de..7fafc2c 100644 --- a/misc/hsearch_r.c +++ b/misc/hsearch_r.c @@ -181,7 +181,7 @@ __hsearch_r (ENTRY item, ACTION action, ENTRY **retval, do { /* Because SIZE is prime this guarantees to step through all - available indeces. */ + available indices. */ if (idx <= hval2) idx = htab->size + idx - hval2; else |