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:
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_relation.cc')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_relation.cc4
1 files changed, 2 insertions, 2 deletions
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);