Skip to content
Snippets Groups Projects
Commit 307b13d4 authored by Timo Koch's avatar Timo Koch
Browse files

Merge branch 'fix/style-guide-paramtype' into 'master'

[doc] Correct code example in style guide not following style guide

See merge request !3136
parents 3523166b 9915f24d
No related branches found
No related tags found
1 merge request!3136[doc] Correct code example in style guide not following style guide
Checking pipeline status
...@@ -81,12 +81,12 @@ This style guide is taken, modified and enhanced from [DUNE](https://dune-projec ...@@ -81,12 +81,12 @@ This style guide is taken, modified and enhanced from [DUNE](https://dune-projec
* Optional detailed description of the function * Optional detailed description of the function
* over several lines. * over several lines.
* *
* \tparam paramType Very short description of paramType * \tparam ParamType Very short description of paramType
* \param paramName Very short description of paramName * \param paramName Very short description of paramName
* \return returnName Very short description of returnName * \return returnName Very short description of returnName
*/ */
template<typename paramType> template<typename ParamType>
paramType functionName(const paramType& paramName) ParamType functionName(const paramType& paramName)
{ {
... ...
return returnName return returnName
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment