Skip to content

Commit cd8ae75

Browse files
authored
clippy
Signed-off-by: GitHub <[email protected]>
1 parent b814754 commit cd8ae75

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ In that example:
8282

8383
Most methods and traits available on the underlying type are available on the types of this crate.
8484

85-
Most constants are also available, with the most appropriate TypedFloat type (except `NAN` for obvious reasons) in the [`tf64`] and [`tf32`] modules (in [`tf64::consts`] and [`tf32::consts`] respectively when the constant comes from [`core::f64::consts`] or [`core::f32::consts`]). Those modules are named that way to avoid conflicts or confusion with the primitives [`f32`] and [`f64`].
85+
Most constants are also available, with the most appropriate typed float type (except `NAN` for obvious reasons) in the [`tf64`] and [`tf32`] modules (in [`tf64::consts`] and [`tf32::consts`] respectively when the constant comes from [`core::f64::consts`] or [`core::f32::consts`]). Those modules are named that way to avoid conflicts or confusion with the primitives [`f32`] and [`f64`].
8686

8787
> [!WARNING]
8888
> Like for primitives [`f32`] and [`f64`],`-0.0 == +0.0` is `true` for all types of this crate.
@@ -132,14 +132,14 @@ Most constants are also available, with the most appropriate TypedFloat type (ex
132132
All 12 types implement the methods available on [`f32`] and [`f64`] **except**:
133133

134134
- deprecated and nightly-only methods
135-
- total_cmp(&self, other: &f64) -> Ordering
136-
- sin_cos(self) -> (f64, f64)
137-
- mul_add(self, a: f64, b: f64) -> f64
138-
- clamp(self, min: f64, max: f64) -> f64
139-
- LowerExp
140-
- UpperExp
141-
- Product
142-
- Sum
135+
- `total_cmp(&self, other: &f64) -> Ordering`
136+
- `sin_cos(self) -> (f64, f64)`
137+
- `mul_add(self, a: f64, b: f64) -> f64`
138+
- `clamp(self, min: f64, max: f64) -> f64`
139+
- `LowerExp`
140+
- `UpperExp`
141+
- `Product`
142+
- `Sum`
143143
- `to_int_unchecked`
144144
- `to*_bits`
145145
- `from*_bits`

0 commit comments

Comments
 (0)