diff --git a/README.md b/README.md index 12b0842..044ed00 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ For example, if we need to integrate CRC32 checking for a few bytes, like in the ``` We can add it to our project as simple as that: ``` -DSP::CRC crc(0xEDB88320, 0xFFFFFFFF); +CODE::CRC crc(0xEDB88320, 0xFFFFFFFF); for (uint8_t c: std::string("Hello World!")) crc(c); assert(~crc() == 0x1C291CA3); ```