From 896deb1777c00a934d513791c0286b3f41583928 Mon Sep 17 00:00:00 2001 From: Ellen Emilia Anna Zscheile Date: Wed, 4 Jun 2025 23:09:54 +0200 Subject: [PATCH] docs(math/polygon_tangents): Fix `CachedPolyExt` doc-comment --- src/math/polygon_tangents.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/polygon_tangents.rs b/src/math/polygon_tangents.rs index a4b3e99..4a52e46 100644 --- a/src/math/polygon_tangents.rs +++ b/src/math/polygon_tangents.rs @@ -20,7 +20,7 @@ pub enum PolyTangentException { }, } -/// 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(pub Box<[(Point, I, f64)]>);