summaryrefslogtreecommitdiff
path: root/testapp.c
diff options
context:
space:
mode:
authorTyson Andre <tysonandre775@hotmail.com>2021-06-28 20:35:05 -0400
committerdormando <dormando@rydia.net>2021-08-05 15:04:14 -0700
commitfba435c992eda3762a652210e6f75bba75e19e2c (patch)
tree0f9cdc6344261de5518170c31a8f880cf11f65ff /testapp.c
parentddee3e27a031be22f5f28c160be18fd3cb9bc63d (diff)
downloadmemcached-fba435c992eda3762a652210e6f75bba75e19e2c.tar.gz
Fix typos in doc/code comments (tem->item, etc)
Note: Do not fix typos in crc32.c because it's copied from an upstream source
Diffstat (limited to 'testapp.c')
-rw-r--r--testapp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testapp.c b/testapp.c
index 47cb103..390f175 100644
--- a/testapp.c
+++ b/testapp.c
@@ -906,7 +906,7 @@ static enum test_return test_crc32c(void) {
for (int x = 0; x < 256; x++)
buffer[x] = x;
- /* Compare harware to software implementaiton */
+ /* Compare hardware to software implementation */
crc_hw = crc32c(0, buffer, 256);
crc_sw = crc32c_sw(0, buffer, 256);
assert(crc_hw == 0x9c44184b);