Revert "lists: Add list literal doc example."
[factor.git] / basis / checksums / crc16 / crc16-docs.factor
blob59fb431e595114603ad379fea9e2e64473352107
1 USING: help.markup help.syntax math ;
2 IN: checksums.crc16
4 HELP: crc16
5 { $class-description "The crc16 checksum algorithm." } ;
7 ARTICLE: "checksums.crc16" "CRC16 checksum"
8 "The crc16 checksum algorithm provides a quick but unreliable way to detect changes in data. Also known as CRC-16 and CRC-16-ANSI. Used in Bisync, Modbus, USB, ANSI X3.28 and many other protocols."
9 { $subsections crc16 } ;
11 ABOUT: "checksums.crc16"