Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb authored and zowens committed Feb 6, 2024
1 parent 0e2e9c1 commit 8799754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#![cfg_attr(all(target_arch = "aarch64", nightly), feature(stdarch_arm_crc32))]

Expand Down

0 comments on commit 8799754

Please sign in to comment.