Skip to content

Commit

Permalink
Fix clippy::empty_line_after_doc_comments lint
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Oct 3, 2024
1 parent d7a6619 commit 0d441de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1603,7 +1603,7 @@ impl<T: Euclid, U> Point3D<T, U> {
///
/// let p = Point3D::new(7.0, -7.0, 0.0);
/// let s = Size3D::new(4.0, -4.0, 12.0);

///
/// assert_eq!(p.rem_euclid(&s), point3(3.0, 1.0, 0.0));
/// assert_eq!((-p).rem_euclid(&s), point3(1.0, 3.0, 0.0));
/// assert_eq!(p.rem_euclid(&-s), point3(3.0, 1.0, 0.0));
Expand Down

0 comments on commit 0d441de

Please sign in to comment.