From 7494836542e906a247076c5fff32a50c78d4eea4 Mon Sep 17 00:00:00 2001 From: Thierry Berger Date: Tue, 1 Oct 2024 09:44:54 +0200 Subject: [PATCH] clean incorrect comments --- src/lib.rs | 2 +- src/query/ray/ray.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index d4c3cb6e..4c144895 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,7 +20,7 @@ the rust programming language. #![allow(clippy::type_complexity)] // Complains about closures that are fairly simple. #![doc(html_root_url = "http://docs.rs/parry/0.1.1")] #![cfg_attr(not(feature = "std"), no_std)] -#![deny(unused_qualifications)] // TODO: deny that everytime +#![deny(unused_qualifications)] #[cfg(all( feature = "simd-is-enabled", diff --git a/src/query/ray/ray.rs b/src/query/ray/ray.rs index 4c9489c6..d20bd478 100644 --- a/src/query/ray/ray.rs +++ b/src/query/ray/ray.rs @@ -79,7 +79,7 @@ pub struct RayIntersection { /// Otherwise, the normal points outward. /// /// If the `time_of_impact` is exactly zero, the normal might not be reliable. - // TODO: use a Unit instead. // TODO: Thierry: should we use Unit for [`Ray::dir`] too ? + // TODO: use a Unit instead. pub normal: Vector, /// Feature at the intersection point.