diff --git a/crates/fj-math/src/arc.rs b/crates/fj-math/src/arc.rs index e5271df8b..1549b0717 100644 --- a/crates/fj-math/src/arc.rs +++ b/crates/fj-math/src/arc.rs @@ -27,7 +27,7 @@ impl Arc { let p0 = p0.into(); let p1 = p1.into(); - // This is an implementation of this solution: + // This is an adaptation of this: // https://math.stackexchange.com/a/87374 let distance_between_endpoints = (p1 - p0).magnitude();