]> gitweb.factorcode.org Git - factor.git/commitdiff
checksums.crc32: fix comment.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 30 Dec 2021 05:43:46 +0000 (21:43 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 30 Dec 2021 05:43:46 +0000 (21:43 -0800)
core/checksums/crc32/crc32.factor

index d646a0440d31f07f35f33d756eb14454eba2c31a..d7b85b818ab9ef3d63380bb091de9b10701a438c 100644 (file)
@@ -26,7 +26,7 @@ INSTANCE: crc32 checksum
     drop [ 0xffffffff dup ] dip ; inline
 
 <PRIVATE
-: 4>be ( n -- byte-array ) ! duplicated from io.binary, but in core
+: 4>be ( n -- byte-array ) ! duplicated from endian but in core
     { -24 -16 -8 0 } [ shift 0xff bitand ] with B{ } map-as ;
 PRIVATE>