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.
This commit is contained in:
@@ -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<int, int> fn("add 10", [](int value) { return value + 10; });
|
||||
* `CustomMF_SI_SO<int, int> fn("add 10", [](int value) { return value + 10; });`
|
||||
*/
|
||||
template<typename In1, typename Out1> class CustomMF_SI_SO : public MultiFunction {
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user