Skip to content

Commit 0c97608

Browse files
authored
README
Signed-off-by: GitHub <[email protected]>
1 parent 216a169 commit 0c97608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This crate is for you if:
2222

2323
- If you want to know at compile time if a float can be negative, positive, zero, finite and ensure it is not `NaN`, without `panic!`.
2424

25-
- If you need [`core::cmp::Ord`], [`core::cmp::Eq`] or [`core::hash::Hash`] on floats.
25+
- If you need [`core::cmp::Ord`], [`core::cmp::Eq`] or [`core::hash::Hash`] on (non-`NaN`) floats.
2626

2727
# The 12 types provided by this crate
2828

@@ -35,7 +35,7 @@ And their positive and negative counterparts:
3535

3636
(Strictly negatives types reject `+0.0` and strictly positives types reject `-0.0`)
3737

38-
| Type | -∞ | ]-∞; -0.0[ | -0.0 | +0.0 | ]+0.0; +∞[ | +∞ | `NaN` |
38+
| Type | `-∞` | `]-∞; -0.0[` | `-0.0` | `+0.0` | `]+0.0; +∞[` | `+∞` | `NaN` |
3939
|---|---|---|---|---|---|---|---|
4040
| [`NonNaN`] | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ ||
4141
| [`NonNaNFinite`] || ✔️ | ✔️ | ✔️ | ✔️ |||

0 commit comments

Comments
 (0)