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:
authorBrecht Van Lommel <brecht@blender.org>2020-03-19 22:33:23 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-03-19 23:55:17 +0300
commita1322d7c9546dc78204c0ba9980c1e3094149e7a (patch)
tree3444928d197ebb9aacca58124e67d2efc637abb5 /source/blender/blenkernel/intern/modifier.c
parent83f171b6269fa5f1491c8517882984801e6b49cc (diff)
Cleanup: fix typos in comments
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D7133
Diffstat (limited to 'source/blender/blenkernel/intern/modifier.c')
-rw-r--r--source/blender/blenkernel/intern/modifier.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenkernel/intern/modifier.c b/source/blender/blenkernel/intern/modifier.c
index 43e246bb342..0a76b61cdb1 100644
--- a/source/blender/blenkernel/intern/modifier.c
+++ b/source/blender/blenkernel/intern/modifier.c
@@ -677,7 +677,7 @@ Object *modifiers_isDeformedByArmature(Object *ob)
}
}
- if (amd) { /* if were still here then return the last armature */
+ if (amd) { /* if we're still here then return the last armature */
return amd->object;
}
@@ -700,7 +700,7 @@ Object *modifiers_isDeformedByMeshDeform(Object *ob)
}
}
- if (mdmd) { /* if were still here then return the last armature */
+ if (mdmd) { /* if we're still here then return the last armature */
return mdmd->object;
}
@@ -726,7 +726,7 @@ Object *modifiers_isDeformedByLattice(Object *ob)
}
}
- if (lmd) { /* if were still here then return the last lattice */
+ if (lmd) { /* if we're still here then return the last lattice */
return lmd->object;
}
@@ -752,7 +752,7 @@ Object *modifiers_isDeformedByCurve(Object *ob)
}
}
- if (cmd) { /* if were still here then return the last curve */
+ if (cmd) { /* if we're still here then return the last curve */
return cmd->object;
}