From 473d63babfc212801b122f66b7e91211d59183ec Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 23 Oct 2024 19:59:13 +0200 Subject: [PATCH] Update doc comments --- crates/fj-core/src/geometry/geometry.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/fj-core/src/geometry/geometry.rs b/crates/fj-core/src/geometry/geometry.rs index cd08813fc..23c4a4d55 100644 --- a/crates/fj-core/src/geometry/geometry.rs +++ b/crates/fj-core/src/geometry/geometry.rs @@ -275,7 +275,7 @@ pub struct LocalCurveGeom { pub enum CurveGenerator { /// # The curve is defined locally on a surface Surface { - /// # The geometric representation of the curve + /// # A generator for local curve geometry generator: Box>, /// # The surface that the curve geometry is defined on @@ -284,7 +284,7 @@ pub enum CurveGenerator { /// # The curve is defined globally in 3D space Global { - /// # The geometric representation of the curve + /// # A generator for global curve geometry generator: Box>, }, } @@ -294,6 +294,6 @@ pub enum CurveGenerator { /// Surface are represented by triangle meshes, their uniform intermediate /// representation. pub struct SurfaceGenerator { - /// # The geometric representation of the surface + /// # A generator for surface geometry pub generator: Box, }