From d6ac293bd4e249073f38d6010a0aedbf856d2d50 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Tue, 26 Jun 2018 11:05:59 +0200 Subject: [PATCH] Cleanup: comment --- source/blender/blenkernel/intern/object.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/blender/blenkernel/intern/object.c b/source/blender/blenkernel/intern/object.c index f31aa36de5f..210e6f096b8 100644 --- a/source/blender/blenkernel/intern/object.c +++ b/source/blender/blenkernel/intern/object.c @@ -404,10 +404,9 @@ void BKE_object_free_caches(Object *object) } } - /* NOTE: If object ios copming from a duplicator, it might be a temporary + /* NOTE: If object is coming from a duplicator, it might be a temporary * object created by dependency graph, which shares pointers with original - * object. - * In this case we can not free anything. + * object. In this case we can not free anything. */ if ((object->base_flag & BASE_FROMDUPLI) == 0) { BKE_object_free_derived_caches(object);