Skip to content

Commit

Permalink
clean incorrect comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrixyz committed Oct 1, 2024
1 parent cfd0b63 commit 7494836
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/query/ray/ray.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Vector> instead. // TODO: Thierry: should we use Unit for [`Ray::dir`] too ?
// TODO: use a Unit<Vector> instead.
pub normal: Vector<Real>,

/// Feature at the intersection point.
Expand Down

0 comments on commit 7494836

Please sign in to comment.