summaryrefslogtreecommitdiffstats
path: root/src/animation/backend/bezierevaluator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/animation/backend/bezierevaluator.cpp')
-rw-r--r--src/animation/backend/bezierevaluator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/animation/backend/bezierevaluator.cpp b/src/animation/backend/bezierevaluator.cpp
index 6ed8b1aa2..9d81a2f2f 100644
--- a/src/animation/backend/bezierevaluator.cpp
+++ b/src/animation/backend/bezierevaluator.cpp
@@ -83,7 +83,7 @@ float BezierEvaluator::valueForTime(float time) const
{
const float u = parameterForTime(time);
- // Calulate powers of u and (1-u) that we need
+ // Calculate powers of u and (1-u) that we need
const float u2 = u * u;
const float u3 = u2 * u;
const float mu = 1.0f - u;