Skip to content

Commit

Permalink
Fix error in Readme about feature precedence
Browse files Browse the repository at this point in the history
The readme had a copy-paste error, where it said "slice16-mem-limit" instead of "no-table-mem-limit"
  • Loading branch information
KillingSpark authored and akhilles committed Nov 16, 2023
1 parent 42cc9e7 commit b58f49a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ See the benchmark section for hints, but do benchmarks on your target hardware t

These can be used by substituting `Crc<uxxx>` with e.g. `Crc<Slice16<uxxx>>`. The flavor for `Crc<uxxx>` is chosen based on three crate features:

* no-table-mem-limit: Takes precedence over "bytewise-mem-limit" and "slice16-mem-limit"
* bytewise-mem-limit: Takes precedence over "slice16-mem-limit"
* slice16-mem-limit: Can be overriden by setting "bytewise-mem-limit" and "slice16-mem-limit"
* no-table-mem-limit: Takes precedence over "bytewise-mem-limit" or "slice16-mem-limit"
* bytewise-mem-limit: Takes precedence over "slice16-mem-limit" and can be overridden by setting "no-table-mem-limit"
* slice16-mem-limit: Can be overridden by setting "bytewise-mem-limit" or "no-table-mem-limit"

If no feature is selected, the `Bytewise` flavor is used.

Expand Down

0 comments on commit b58f49a

Please sign in to comment.