summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-01-26 18:57:36 +0000
committerJim Meyering <jim@meyering.net>1997-01-26 18:57:36 +0000
commit07b07ca07ced0f6688ec1656d5e3ef92ae27fee6 (patch)
treebe55cb8100665dc17c4ba9a443af63f94f007639 /src
parent26a10a80263e46148c3a5b5db010772a82719fbc (diff)
downloadcoreutils-07b07ca07ced0f6688ec1656d5e3ef92ae27fee6.tar.xz
.
Diffstat (limited to 'src')
-rw-r--r--src/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test.c b/src/test.c
index a9b150fb0..cae73296b 100644
--- a/src/test.c
+++ b/src/test.c
@@ -654,7 +654,7 @@ unary_operator (void)
value = -1 != eaccess (argv[pos - 1], R_OK);
return (TRUE == value);
- case 'w': /* File is writeable? */
+ case 'w': /* File is writable? */
unary_advance ();
value = -1 != eaccess (argv[pos - 1], W_OK);
return (TRUE == value);