Cleanup: Typos in comments.

This commit is contained in:
Bastien Montagne 2021-04-07 16:41:43 +02:00
parent 89e353354f
commit b4d6fe1f87
1 changed files with 2 additions and 2 deletions

View File

@ -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;