diff --git a/README.md b/README.md index 4024f85..c26e3ff 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,8 @@ First, a quick primer on [CRCs][crc]. Some of why CRCs are so prevalent because they are mathematically quite pure. You view your message as a big [binary polynomial][binary-polynomial], -divide it by a predefined polynomial (choosing a good CRC polynomial is -the hard part), and the remainder is your CRC: +divide it by a predetermined "generator polynomial" (choosing a good +polynomial is the hard part), and the remainder is your CRC: ``` message = "hi!": @@ -138,8 +138,8 @@ crc = 0x3b ``` You can describe this mathematically in [GF(2)][gf2], but depending on -your experience with GF(2) and other finite-fields, the above example is -probably easier to understand: +your experience with GF(2) and other finite-fields, the above example may +be easier to understand: