From fa129f000d7690a175341dd9f735f8374e2502c4 Mon Sep 17 00:00:00 2001 From: Arpit Srivastava <100526031+arpit-srivastava-one@users.noreply.github.com> Date: Sun, 27 Feb 2022 23:48:53 +0530 Subject: [PATCH] Fix missing word in Beziers, curves and paths (#5654) --- tutorials/math/beziers_and_curves.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/math/beziers_and_curves.rst b/tutorials/math/beziers_and_curves.rst index bd45be3e8..361378383 100644 --- a/tutorials/math/beziers_and_curves.rst +++ b/tutorials/math/beziers_and_curves.rst @@ -56,7 +56,7 @@ along a curve. Vector2 r = q0.LinearInterpolate(q1, t); return r; -This type of is called a *Quadratic Bezier* curve. +This type of curve is called a *Quadratic Bezier* curve. .. image:: img/bezier_quadratic_points2.gif