From 5e47056e8d97e414c9dabacea71fac2bdc7d2818 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 11 Apr 2022 11:41:00 +1000 Subject: Cleanup: malformed C-style comment blocks, spelling - Missing star prefix. - Unnecessary indentation. - Blank line after dot-points (otherwise doxygen merges with the previous dot-point). - Use back-slash for doxygen commands. - Correct spelling. --- source/blender/functions/FN_multi_function_builder.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/functions') diff --git a/source/blender/functions/FN_multi_function_builder.hh b/source/blender/functions/FN_multi_function_builder.hh index ed587a87695..e0ccd2a482d 100644 --- a/source/blender/functions/FN_multi_function_builder.hh +++ b/source/blender/functions/FN_multi_function_builder.hh @@ -20,7 +20,7 @@ namespace blender::fn { * 2. single output (SO) of type Out1 * * This example creates a function that adds 10 to the incoming values: - * CustomMF_SI_SO fn("add 10", [](int value) { return value + 10; }); + * `CustomMF_SI_SO fn("add 10", [](int value) { return value + 10; });` */ template class CustomMF_SI_SO : public MultiFunction { private: -- cgit v1.2.3