From cd1c600548d184cb9019c0491c8fb5a5cf902706 Mon Sep 17 00:00:00 2001 From: sundb Date: Sun, 8 Nov 2020 14:32:38 +0800 Subject: Typo fix: entires -> entries (#8031) --- src/crcspeed.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/crcspeed.c') diff --git a/src/crcspeed.c b/src/crcspeed.c index d2d97a8c7..d4955bfc9 100644 --- a/src/crcspeed.c +++ b/src/crcspeed.c @@ -84,7 +84,7 @@ static inline uint64_t rev8(uint64_t a) { /* This function is called once to initialize the CRC table for use on a big-endian architecture. */ void crcspeed64big_init(crcfn64 fn, uint64_t big_table[8][256]) { - /* Create the little endian table then reverse all the entires. */ + /* Create the little endian table then reverse all the entries. */ crcspeed64little_init(fn, big_table); for (int k = 0; k < 8; k++) { for (int n = 0; n < 256; n++) { @@ -94,7 +94,7 @@ void crcspeed64big_init(crcfn64 fn, uint64_t big_table[8][256]) { } void crcspeed16big_init(crcfn16 fn, uint16_t big_table[8][256]) { - /* Create the little endian table then reverse all the entires. */ + /* Create the little endian table then reverse all the entries. */ crcspeed16little_init(fn, big_table); for (int k = 0; k < 8; k++) { for (int n = 0; n < 256; n++) { -- cgit v1.2.1