Fix minor comment typo

This commit is contained in:
Patrick Walton 2018-01-21 13:06:47 -08:00
parent d8c590867d
commit 2ec5dbfa42
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ pub enum CubicPathCommand {
LineTo(Point2D<f32>), LineTo(Point2D<f32>),
/// Draws a quadratic curve with the control point to the endpoint, respectively. /// Draws a quadratic curve with the control point to the endpoint, respectively.
QuadCurveTo(Point2D<f32>, Point2D<f32>), QuadCurveTo(Point2D<f32>, Point2D<f32>),
/// 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<f32>, Point2D<f32>, Point2D<f32>), CubicCurveTo(Point2D<f32>, Point2D<f32>, Point2D<f32>),
/// Closes the current subpath by drawing a line from the current point to the first point of /// Closes the current subpath by drawing a line from the current point to the first point of
/// the subpath. /// the subpath.