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>2020-07-22 04:46:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-22 04:57:04 +0300
commit83cb4f5f8f2a7db3ba89331c7e8b044c2ddf2cb9 (patch)
treee91fd96015b9c2a7cfa3089350201aeae61d4aaf /source/blender/functions
parent7fc9666c893983d9e8c2af999e960e0ddae68e8f (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/functions')
-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;