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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-11-14 18:46:33 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-11-14 19:07:02 +0300
commitd2dd278c5e2f4d41bc94df7fca959cca6d2526d0 (patch)
tree4b421cc450d0f1ab66b924897d4e9705d3cdb61a /source/blender/makesrna/intern/rna_collection.c
parentb7855862327043b858c5787864ada6f2a2c86ea4 (diff)
Fix typo in comment.
Diffstat (limited to 'source/blender/makesrna/intern/rna_collection.c')
-rw-r--r--source/blender/makesrna/intern/rna_collection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_collection.c b/source/blender/makesrna/intern/rna_collection.c
index 2279dc6880d..03e00708738 100644
--- a/source/blender/makesrna/intern/rna_collection.c
+++ b/source/blender/makesrna/intern/rna_collection.c
@@ -162,7 +162,7 @@ static PointerRNA rna_Collection_children_get(CollectionPropertyIterator *iter)
{
ListBaseIterator *internal = &iter->internal.listbase;
- /* we are actually iterating a CollectionBase list, so override get */
+ /* we are actually iterating a CollectionChild list, so override get */
CollectionChild *child = (CollectionChild *)internal->link;
return rna_pointer_inherit_refine(&iter->parent, &RNA_Collection, child->collection);
}