From a6fbe517138f9cabab66c0f08e712c264dcafb58 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 22 Feb 2023 13:50:32 +0100 Subject: [PATCH] Remove outdated remark from doc comment --- crates/fj-kernel/src/geometry/path.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/crates/fj-kernel/src/geometry/path.rs b/crates/fj-kernel/src/geometry/path.rs index f84b143b2..c8de63351 100644 --- a/crates/fj-kernel/src/geometry/path.rs +++ b/crates/fj-kernel/src/geometry/path.rs @@ -6,10 +6,8 @@ //! //! This is a bit of an in-between module. It is closely associated with curves //! ([`Curve`]/[`GlobalCurve`]) and [`Surface`]s, but paths are not really -//! objects themselves, as logically speaking, they are owned and not referenced -//! (practically speaking, all objects are owned and not referenced, but that is -//! an implementation detail; see [#1021] for context on where things are -//! going). +//! objects themselves, as logically speaking, they are owned and not +//! referenced. //! //! On the other hand, the types in this module don't follow the general style //! of types in `fj-math`. @@ -20,7 +18,6 @@ //! [`Curve`]: crate::objects::Curve //! [`GlobalCurve`]: crate::objects::GlobalCurve //! [`Surface`]: crate::objects::Surface -//! [#1021]: https://github.com/hannobraun/Fornjot/issues/1021 use fj_math::{Circle, Line, Point, Scalar, Transform, Vector};