docs(math/polygon_tangents): Fix `CachedPolyExt` doc-comment

This commit is contained in:
Ellen Emilia Anna Zscheile 2025-06-04 23:09:54 +02:00 committed by mikolaj
parent 03d85b8566
commit 896deb1777
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ pub enum PolyTangentException<I> {
},
}
/// Caches the `perp_dot_product` call in [`between_vectors`]
/// Caches the [`perp_dot_product`] call in [`between_vectors`](super::between_vectors)
#[derive(Clone, Debug)]
pub struct CachedPolyExt<I>(pub Box<[(Point, I, f64)]>);