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/functions/FN_multi_function_signature.hh')
-rw-r--r--source/blender/functions/FN_multi_function_signature.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/functions/FN_multi_function_signature.hh b/source/blender/functions/FN_multi_function_signature.hh
index 26df7c98e4a..ba79dddff16 100644
--- a/source/blender/functions/FN_multi_function_signature.hh
+++ b/source/blender/functions/FN_multi_function_signature.hh
@@ -21,7 +21,7 @@
* \ingroup fn
*
* The signature of a multi-function contains the functions name and expected parameters. New
- * signatures should be build using the MFSignatureBuilder class.
+ * signatures should be build using the #MFSignatureBuilder class.
*/
#include "FN_multi_function_param_type.hh"
@@ -60,7 +60,7 @@ class MFSignatureBuilder {
BLI_assert(data.param_data_indices.is_empty());
}
- /* Input Param Types */
+ /* Input Parameter Types */
template<typename T> void single_input(StringRef name)
{
@@ -93,7 +93,7 @@ class MFSignatureBuilder {
}
}
- /* Output Param Types */
+ /* Output Parameter Types */
template<typename T> void single_output(StringRef name)
{
@@ -126,7 +126,7 @@ class MFSignatureBuilder {
}
}
- /* Mutable Param Types */
+ /* Mutable Parameter Types */
template<typename T> void single_mutable(StringRef name)
{
@@ -162,7 +162,7 @@ class MFSignatureBuilder {
/* Context */
/** This indicates that the function accesses the context. This disables optimizations that
- * depend on the fact that the function always performes the same operation. */
+ * depend on the fact that the function always performers the same operation. */
void depends_on_context()
{
data_.depends_on_context = true;