Skip to content

Commit

Permalink
Satisfy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-blackbird committed Oct 2, 2023
1 parent e1aed8e commit 16e405a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/float.rs
Original file line number Diff line number Diff line change
@@ -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`.
///
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 16e405a

Please sign in to comment.