From a00702ee65d6c44620d3842f1199b58072b85c4a Mon Sep 17 00:00:00 2001 From: Koen Zandberg Date: Tue, 17 Oct 2023 10:14:30 +0200 Subject: [PATCH] Fletcher32: Rephrase note on 16 bit word operations --- sys/include/checksum/fletcher32.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/include/checksum/fletcher32.h b/sys/include/checksum/fletcher32.h index 01fc08dfcb..a53e02aa02 100644 --- a/sys/include/checksum/fletcher32.h +++ b/sys/include/checksum/fletcher32.h @@ -43,8 +43,7 @@ typedef struct { * http://en.wikipedia.org/w/index.php?title=Fletcher%27s_checksum&oldid=661273016#Optimizations * * @note the returned sum is never 0 - * @note pay attention to alignment issues since this operates on an input - * buffer containing 16 bit words, not bytes. + * @note pay attention to the @p words parameter buffer containing 16 bit words, not bytes. * * @param buf input buffer to hash * @param words length of buffer, in 16 bit words