From 2ec5dbfa42682b72bb029b337cd929a41f546c35 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Sun, 21 Jan 2018 13:06:47 -0800 Subject: [PATCH] Fix minor comment typo --- path-utils/src/cubic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.