diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2019-01-12 13:44:51 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2019-01-12 13:44:51 +0000 |
commit | a1b02ae763bff6457cddf08d1e453d103b5d6259 (patch) | |
tree | 84d4f69a0169409844d76669e8f3d1e0f7515e52 /socket | |
parent | 5cbbf01ebe26b84c9c58d4b7f7d2c41038d7c68b (diff) | |
download | glibc-a1b02ae763bff6457cddf08d1e453d103b5d6259.zip glibc-a1b02ae763bff6457cddf08d1e453d103b5d6259.tar.gz glibc-a1b02ae763bff6457cddf08d1e453d103b5d6259.tar.bz2 |
Fix a few typos in comments
Apply the following spelling fixes:
$ git grep -F -l 'relevent' |
xargs sed -i 's/relevent/relevant/g'
$ git grep -F -l 'checked fot' |
xargs sed -i 's/checked fot/checked for/g'
$ git grep -F -l "could't" |
xargs sed -i "s/could't/couldn't/g"
$ git grep -F -l 'wheter' | grep -Fv ChangeLog.old |
xargs sed -i 's/wheter/whether/g'
$ git grep -F -l 'neccessary' | grep -Fv ChangeLog.old |
xargs sed -i 's/neccessary/necessary/g'
$ git grep -F -l 'ouput' |
xargs sed -i 's/ouput/output/g'
$ git grep -F -w -l 'iput' |
xargs sed -i 's/iput/input/g'
This is inspired by a gnulib bug report at
https://lists.gnu.org/archive/html/bug-gnulib/2019-01/msg00081.html
* argp/argp-help.c: Fix typo in comment.
* misc/sys/cdefs.h: Likewise.
* posix/regexec.c (sift_states_iter_mb): Likewise.
* socket/sockatmark.c: Likewise.
* socket/sys/socket.h: Likewise.
* sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
* sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
* sysdeps/ia64/fpu/s_cosl.S: Likewise.
* sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
* sysdeps/unix/sockatmark.c: Likewise.
* time/strptime_l.c: Likewise.
Diffstat (limited to 'socket')
-rw-r--r-- | socket/sockatmark.c | 2 | ||||
-rw-r--r-- | socket/sys/socket.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/socket/sockatmark.c b/socket/sockatmark.c index 3ffb014..d6a13c8 100644 --- a/socket/sockatmark.c +++ b/socket/sockatmark.c @@ -18,7 +18,7 @@ #include <errno.h> #include <sys/socket.h> -/* Determine wheter socket is at a out-of-band mark. */ +/* Determine whether socket is at a out-of-band mark. */ int sockatmark (int fd) { diff --git a/socket/sys/socket.h b/socket/sys/socket.h index 37e4a4a..6f242d0 100644 --- a/socket/sys/socket.h +++ b/socket/sys/socket.h @@ -251,7 +251,7 @@ extern int shutdown (int __fd, int __how) __THROW; #ifdef __USE_XOPEN2K -/* Determine wheter socket is at a out-of-band mark. */ +/* Determine whether socket is at a out-of-band mark. */ extern int sockatmark (int __fd) __THROW; #endif |