diff options
author | Jim Meyering <jim@meyering.net> | 2005-11-19 07:49:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-11-19 07:49:10 +0000 |
commit | a1343d67f2e9fb4f6e0a9057dd76d8660e1b2878 (patch) | |
tree | 13aa889767ab982572c6345066eac61626cd4a32 /lib | |
parent | fd907a33bd28ebdcdf99db5a3d38de4f5030d6be (diff) | |
download | coreutils-a1343d67f2e9fb4f6e0a9057dd76d8660e1b2878.tar.xz |
tweak grammar in a comment
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sha1.c | 4 | ||||
-rw-r--r-- | lib/sha256.c | 4 | ||||
-rw-r--r-- | lib/sha512.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/sha1.c b/lib/sha1.c index 556d9ca1a..e8949bdcc 100644 --- a/lib/sha1.c +++ b/lib/sha1.c @@ -77,7 +77,7 @@ sha1_init_ctx (struct sha1_ctx *ctx) must be in little endian byte order. IMPORTANT: On some systems it is required that RESBUF is correctly - aligned for a 32 bits value. */ + aligned for a 32-bit value. */ void * sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf) { @@ -94,7 +94,7 @@ sha1_read_ctx (const struct sha1_ctx *ctx, void *resbuf) prolog according to the standard and write the result to RESBUF. IMPORTANT: On some systems it is required that RESBUF is correctly - aligned for a 32 bits value. */ + aligned for a 32-bit value. */ void * sha1_finish_ctx (struct sha1_ctx *ctx, void *resbuf) { diff --git a/lib/sha256.c b/lib/sha256.c index 4fede36d8..03c05281a 100644 --- a/lib/sha256.c +++ b/lib/sha256.c @@ -98,7 +98,7 @@ sha224_init_ctx (struct sha256_ctx *ctx) must be in little endian byte order. IMPORTANT: On some systems it is required that RESBUF is correctly - aligned for a 32 bits value. */ + aligned for a 32-bit value. */ void * sha256_read_ctx (const struct sha256_ctx *ctx, void *resbuf) { @@ -125,7 +125,7 @@ sha224_read_ctx (const struct sha256_ctx *ctx, void *resbuf) prolog according to the standard and write the result to RESBUF. IMPORTANT: On some systems it is required that RESBUF is correctly - aligned for a 32 bits value. */ + aligned for a 32-bit value. */ static void sha256_conclude_ctx (struct sha256_ctx *ctx) { diff --git a/lib/sha512.c b/lib/sha512.c index 468ce76fd..0e0597397 100644 --- a/lib/sha512.c +++ b/lib/sha512.c @@ -100,7 +100,7 @@ sha384_init_ctx (struct sha512_ctx *ctx) must be in little endian byte order. IMPORTANT: On some systems it is required that RESBUF is correctly - aligned for a 64 bits value. */ + aligned for a 64-bit value. */ void * sha512_read_ctx (const struct sha512_ctx *ctx, void *resbuf) { @@ -127,7 +127,7 @@ sha384_read_ctx (const struct sha512_ctx *ctx, void *resbuf) prolog according to the standard and write the result to RESBUF. IMPORTANT: On some systems it is required that RESBUF is correctly - aligned for a 64 bits value. */ + aligned for a 64-bit value. */ static void sha512_conclude_ctx (struct sha512_ctx *ctx) { |