From 69b347961e0c3516fa2c38cc6ad9af3e2b2b8a5c Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 10 Oct 2024 18:34:58 +0200 Subject: [PATCH] Fix type names in doc comment --- crates/fj-core/src/geometry/traits.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fj-core/src/geometry/traits.rs b/crates/fj-core/src/geometry/traits.rs index 74441245a..36c42acea 100644 --- a/crates/fj-core/src/geometry/traits.rs +++ b/crates/fj-core/src/geometry/traits.rs @@ -29,8 +29,8 @@ use super::{CurveBoundary, Path, Tolerance}; /// It is generic over the dimensionality of the generated polyline. Typically, /// two variants should be implemented per curve geometry type: /// -/// - `CurveGeom2<2>` for surface-local geometry. -/// - `CurveGeom2<3>` for global 3D geometry. +/// - `GenPolyline<2>` for surface-local geometry. +/// - `GenPolyline<3>` for global 3D geometry. pub trait GenPolyline { /// # Access the origin of the curve fn origin(&self) -> Point;