From 83cb4f5f8f2a7db3ba89331c7e8b044c2ddf2cb9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 22 Jul 2020 11:46:27 +1000 Subject: Cleanup: spelling --- source/blender/functions/FN_multi_function_signature.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/functions') 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 void single_input(StringRef name) { @@ -93,7 +93,7 @@ class MFSignatureBuilder { } } - /* Output Param Types */ + /* Output Parameter Types */ template void single_output(StringRef name) { @@ -126,7 +126,7 @@ class MFSignatureBuilder { } } - /* Mutable Param Types */ + /* Mutable Parameter Types */ template 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; -- cgit v1.2.3