diff --git a/7-animation/1-bezier-curve/article.md b/7-animation/1-bezier-curve/article.md
index c1803dea..8809e840 100644
--- a/7-animation/1-bezier-curve/article.md
+++ b/7-animation/1-bezier-curve/article.md
@@ -176,7 +176,7 @@ Instead of x1, y1, x2, y2, xx = (1−t)2 * 0 + 2(1−t)t * 0.5 + t2 * 1 = (1-t)t + t2 = t
-- y = (1−t)2 * 0 + 2(1−t)t * 1 + t2 * 0 = 2(1-t)t = –t2 + 2t
+- y = (1−t)2 * 0 + 2(1−t)t * 1 + t2 * 0 = 2(1-t)t = –2t2 + 2t
Now as `t` runs from `0` to `1`, the set of values `(x,y)` for each `t` forms the curve for such control points.