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:
authorDalai Felinto <dfelinto@gmail.com>2018-06-26 12:05:59 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-06-26 12:07:29 +0300
commitd6ac293bd4e249073f38d6010a0aedbf856d2d50 (patch)
tree04bc3977fbad1077504bb6b616e056c5a631b9d3
parentcfb50463bef8a5c91daaa48cb0e84c4f6bb65ea7 (diff)
Cleanup: comment
-rw-r--r--source/blender/blenkernel/intern/object.c5
1 files 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);