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 <bastien@blender.org>2021-04-07 17:41:43 +0300
committerBastien Montagne <bastien@blender.org>2021-04-08 12:45:44 +0300
commitb4d6fe1f87c8137906a54bc6aaf02813b639e547 (patch)
tree168c9b4823fa1f7466b3d3a3b5c15c4ec0f49229 /source/blender/blenkernel/intern/collection.c
parent89e353354f11c8470ff5ef307926e609d6069be2 (diff)
Cleanup: Typos in comments.
Diffstat (limited to 'source/blender/blenkernel/intern/collection.c')
-rw-r--r--source/blender/blenkernel/intern/collection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/collection.c b/source/blender/blenkernel/intern/collection.c
index 0c09744c170..08ece42e6bb 100644
--- a/source/blender/blenkernel/intern/collection.c
+++ b/source/blender/blenkernel/intern/collection.c
@@ -2084,10 +2084,10 @@ void BKE_scene_objects_iterator_begin(BLI_Iterator *iter, void *data_in)
SceneObjectsIteratorData *data = MEM_callocN(sizeof(SceneObjectsIteratorData), __func__);
iter->data = data;
- /* lookup list ot make sure each object is object called once */
+ /* Lookup list to make sure that each object is only processed once. */
data->visited = BLI_gset_ptr_new(__func__);
- /* we wrap the scenecollection iterator here to go over the scene collections */
+ /* We wrap the scenecollection iterator here to go over the scene collections. */
BKE_scene_collections_iterator_begin(&data->scene_collection_iter, scene);
Collection *collection = data->scene_collection_iter.current;