From 5a6a6ef0c659581e2d2ae028ae9e22c6e9801ef4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 26 Feb 2020 15:21:32 +1100 Subject: Cleanup: spelling --- source/blender/depsgraph/intern/depsgraph_relation.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/depsgraph') diff --git a/source/blender/depsgraph/intern/depsgraph_relation.cc b/source/blender/depsgraph/intern/depsgraph_relation.cc index 1b2de2cc807..cff62540ca8 100644 --- a/source/blender/depsgraph/intern/depsgraph_relation.cc +++ b/source/blender/depsgraph/intern/depsgraph_relation.cc @@ -42,7 +42,7 @@ Relation::Relation(Node *from, Node *to, const char *description) /* Hook it up to the nodes which use it. * * NOTE: We register relation in the nodes which this link connects to here - * in constructor but we don't unregister it in the destructor. + * in constructor but we don't un-register it in the destructor. * * Reasoning: * @@ -50,7 +50,7 @@ Relation::Relation(Node *from, Node *to, const char *description) * real need in avoiding dangling pointers, all the memory is to be freed * anyway. * - * - Unregistering relation is not a cheap operation, so better to have it + * - Un-registering relation is not a cheap operation, so better to have it * as an explicit call if we need this. */ from->outlinks.push_back(this); to->inlinks.push_back(this); -- cgit v1.2.3