]> gitweb.factorcode.org Git - factor.git/blob - core/checksums/crc32/crc32-docs.factor
docs: change $subsection to $subsections
[factor.git] / core / checksums / crc32 / crc32-docs.factor
1 USING: help.markup help.syntax math ;
2 IN: checksums.crc32
3
4 HELP: crc32
5 { $class-description "The CRC32 checksum algorithm." } ;
6
7 ARTICLE: "checksums.crc32" "CRC32 checksum"
8 "The CRC32 checksum algorithm provides a quick but unreliable way to detect changes in data."
9 { $subsections crc32 } ;
10
11 ABOUT: "checksums.crc32"