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:
authorCampbell Barton <ideasman42@gmail.com>2020-07-03 04:20:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-03 04:58:13 +0300
commita272a2a6cdc30c30d3957787f30211cfc5b9d35c (patch)
tree7cb31b54f5f0b17828f0ebfa5acb058245e24d5a /source/blender/makesrna/intern/rna_key.c
parent0fdb79fe5848a66335805cf353eb38afe16cf25e (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/makesrna/intern/rna_key.c')
-rw-r--r--source/blender/makesrna/intern/rna_key.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_key.c b/source/blender/makesrna/intern/rna_key.c
index f0de7317913..e0005766c48 100644
--- a/source/blender/makesrna/intern/rna_key.c
+++ b/source/blender/makesrna/intern/rna_key.c
@@ -708,9 +708,8 @@ static KeyBlock *rna_ShapeKeyData_find_keyblock(Key *key, float *point)
return NULL;
}
- /* we'll need to manually search through the keyblocks and check
- * if the point is somewhere in the middle of each block's data
- */
+ /* We'll need to manually search through the key-blocks and check
+ * if the point is somewhere in the middle of each block's data. */
for (kb = key->block.first; kb; kb = kb->next) {
if (kb->data) {
float *start = (float *)kb->data;