diff --git a/path-utils/src/cubic.rs b/path-utils/src/cubic.rs index f6269b3b..14d7624b 100644 --- a/path-utils/src/cubic.rs +++ b/path-utils/src/cubic.rs @@ -78,7 +78,7 @@ pub enum CubicPathCommand { LineTo(Point2D), /// Draws a quadratic curve with the control point to the endpoint, respectively. QuadCurveTo(Point2D, Point2D), - /// Draws a cubic cubic curve with the two control points to the endpoint, respectively. + /// Draws a cubic curve with the two control points to the endpoint, respectively. CubicCurveTo(Point2D, Point2D, Point2D), /// Closes the current subpath by drawing a line from the current point to the first point of /// the subpath.