[Bf-blender-cvs] [b4d6fe1f87c] master: Cleanup: Typos in comments.

Bastien Montagne noreply at git.blender.org
Thu Apr 8 11:48:23 CEST 2021


Commit: b4d6fe1f87c8137906a54bc6aaf02813b639e547
Author: Bastien Montagne
Date:   Wed Apr 7 16:41:43 2021 +0200
Branches: master
https://developer.blender.org/rBb4d6fe1f87c8137906a54bc6aaf02813b639e547

Cleanup: Typos in comments.

===================================================================

M	source/blender/blenkernel/intern/collection.c

===================================================================

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;



More information about the Bf-blender-cvs mailing list