Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rick-de-water committed Oct 10, 2024
1 parent 928aab6 commit 0e568e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Internally all `NonAny*` types use the `NonZero*` types from the standard librar
The upside of this technique is that it works on stable rust. The downside is that it requires an, albeit cheap, XOR operation to load and store the value. Additionally, unlike the `NonZero*` types, transmuting `NonAny*` types to their underlying integer types results in a value that was XORed with the niche, instead of the value itself.

## MSRV
The MSRV is fixed at currently 1.56.0, and the intention is to keep it there at least until version 1.0 is released.
The MSRV is currently fixed at 1.56.0, and the intention is to keep it there at least until version 1.0 is released.

## Similar libraries
- [nonmax](https://github.com/LPGhatguy/nonmax) - Uses the same XOR technique to create types with an `<int>::MAX` niche. The equivalent in nonany would be to either use a niche of `<int>::MAX`, or the `NonMax*` type aliases.
Expand Down

0 comments on commit 0e568e4

Please sign in to comment.