From 877caba7339ad443445abe52e0efb7077c269980 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 23 May 2025 12:44:52 +0200 Subject: [PATCH] Update doc comment --- experiments/2025-03-18/src/operations/sweep.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/experiments/2025-03-18/src/operations/sweep.rs b/experiments/2025-03-18/src/operations/sweep.rs index 7808c386c..cd330f791 100644 --- a/experiments/2025-03-18/src/operations/sweep.rs +++ b/experiments/2025-03-18/src/operations/sweep.rs @@ -9,14 +9,14 @@ use crate::{ use super::{connect::ConnectExt, flip::FlipExt, translate::TranslateExt}; pub trait SweepExt { - /// # Sweep a face along a path, creating a solid + /// # Sweep a face along a curve, creating a solid /// /// ## Implementation Note /// /// This method has very particular (and undocumented) requirements about - /// the orientation of the two faces relative to each other, and will - /// happily generate invalid geometry, if those undocumented requirements - /// aren't met. + /// the orientation of the face relative to the curve, and will happily + /// generate invalid geometry, if those undocumented requirements aren't + /// met. /// /// It should be seen as more of a placeholder for a real implementation of /// this operation.