Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2014-03-22 07:57:57 +0400
committerJoshua Leung <aligorith@gmail.com>2014-03-22 07:57:57 +0400
commit85e0f6904095ff18917f53df64c6fb0f2543a216 (patch)
tree9c2c18da1fb0db164de1a9612a58b191d5d2b21d /source/blender/editors/animation/keyframes_general.c
parentf25c7a3f04ddbc6037cef99e891ba14c820b59f2 (diff)
A few spelling fixes
Diffstat (limited to 'source/blender/editors/animation/keyframes_general.c')
-rw-r--r--source/blender/editors/animation/keyframes_general.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/keyframes_general.c b/source/blender/editors/animation/keyframes_general.c
index 6a359b0e6d0..f2161c4f094 100644
--- a/source/blender/editors/animation/keyframes_general.c
+++ b/source/blender/editors/animation/keyframes_general.c
@@ -359,7 +359,7 @@ void smooth_fcurve(FCurve *fcu)
/* round 2: apply new values */
tsb = tarray;
for (i = 0; i < totSel; i++, tsb++) {
- /* don't touch end points, as their values were't touched above */
+ /* don't touch end points, as their values weren't touched above */
if (ELEM(i, 0, (totSel - 1)) == 0) {
/* y2 takes the average of the 2 points */
*tsb->h2 = tsb->y2;