diff --git a/README.md b/README.md index 53a967c..d8041fd 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Rust implementation of the CRC-32-Castagnoli algorithm with hardware acceleration where possible. -Hardware accelleration on the following architectures: +Hardware acceleration on the following architectures: 1. **x84-64** with [SSE 4.2](https://software.intel.com/sites/default/files/m/8/b/8/D9156103.pdf) * All stable versions of Rust * If SSE 4.2 is enabled at compile time, it will only build the SSE implementation. Otherwise, the `cpuid` is used to find the best implementation at runtime. diff --git a/src/lib.rs b/src/lib.rs index 26ec417..8c150c5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ //! then the hardware-optimized version will be compiled into the code. //! //! Otherwise, the crate will use `cpuid` at runtime to detect the -//! running CPU's features, and enable the appropiate algorithm. +//! running CPU's features, and enable the appropriate algorithm. mod combine; mod hasher;