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:
authorCampbell Barton <ideasman42@gmail.com>2021-04-01 14:20:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-01 14:20:53 +0300
commit1bdceb813ccb9690e5746731038e7f0ce92ed134 (patch)
treeb1af43f7f4956789bfe2f871ea92e4d079dfc56c /source/blender/compositor
parent2a5c0c34914cc89efb8816edba2cf62a6299a6c1 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/intern/COM_Node.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/intern/COM_Node.h b/source/blender/compositor/intern/COM_Node.h
index 9aca1a8ff44..a16e71a9b27 100644
--- a/source/blender/compositor/intern/COM_Node.h
+++ b/source/blender/compositor/intern/COM_Node.h
@@ -63,12 +63,12 @@ class Node {
protected:
/**
- * \brief the list of actual inputsockets \see NodeInput
+ * \brief the list of actual input-sockets \see NodeInput
*/
blender::Vector<NodeInput *> inputs;
/**
- * \brief the list of actual outputsockets \see NodeOutput
+ * \brief the list of actual output-sockets \see NodeOutput
*/
blender::Vector<NodeOutput *> outputs;
@@ -184,7 +184,7 @@ class Node {
protected:
/**
- * \brief add an NodeInput to the collection of inputsockets
+ * \brief add an NodeInput to the collection of input-sockets
* \note may only be called in an constructor
* \param socket: the NodeInput to add
*/
@@ -192,7 +192,7 @@ class Node {
void addInputSocket(DataType datatype, bNodeSocket *socket);
/**
- * \brief add an NodeOutput to the collection of outputsockets
+ * \brief add an NodeOutput to the collection of output-sockets
* \note may only be called in an constructor
* \param socket: the NodeOutput to add
*/