From 16e405a9731581ba2282e7172d6b1f1cadcbee61 Mon Sep 17 00:00:00 2001 From: devil-ira Date: Mon, 2 Oct 2023 12:07:51 +0200 Subject: [PATCH] Satisfy lint --- src/float.rs | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/float.rs b/src/float.rs index 903fe377..d073cb3f 100644 --- a/src/float.rs +++ b/src/float.rs @@ -1,4 +1,4 @@ -/// A trait for extending [`f32`] and [`f64`] with extra methods. +/// A trait for extending [`prim@f32`] and [`prim@f64`] with extra methods. pub trait Float { /// Performs a linear interpolation between `self` and `rhs` based on the value `t`. /// diff --git a/src/lib.rs b/src/lib.rs index 64844dfc..a0b39e0d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -330,6 +330,6 @@ pub use self::swizzles::{Vec2Swizzles, Vec3Swizzles, Vec4Swizzles}; /** Rotation Helper */ pub use euler::EulerRot; -/** A trait for extending [`f32`] and [`f64`] with extra methods. */ +/** A trait for extending [`prim@f32`] and [`prim@f64`] with extra methods. */ mod float; pub use float::Float;