diff --git a/crates/fj-core/src/algorithms/approx/path.rs b/crates/fj-core/src/algorithms/approx/path.rs index 8838d73b5..2be49f01f 100644 --- a/crates/fj-core/src/algorithms/approx/path.rs +++ b/crates/fj-core/src/algorithms/approx/path.rs @@ -102,13 +102,12 @@ fn approx_circle( /// Approximate a line /// -/// Since path approximation don't include the end points of the approximation -/// boundary, and a line does not require any other points to be fully defined, -/// this method always returns no points. +/// Since curve approximations don't include the approximation boundary itself, +/// and a line does not require any other points to be fully defined, this +/// method always returns no points. /// -/// The method still exists, to make the code that approximates lines easy to -/// find for anyone reading this module, as well as to provide a place to -/// document this fact about line approximations. +/// The method still exists, to make the code that approximates lines, and thus +/// this piece of documentation, easy to find for anyone who's looking. fn approx_line(line: &Line) -> Vec<(Point<1>, Point)> { let _ = line; Vec::new()