Add missing '@' in the documentation

"param" was not being recognised as a keyword, messing up the layout of
`glm::rotation()`'s parameter description.
This commit is contained in:
Pierre Moreau 2019-08-08 12:20:23 +02:00
parent 67d647ae46
commit 5bbbb460d3
No known key found for this signature in database
GPG Key ID: 4EC99F840E5F0F3B
2 changed files with 9 additions and 3 deletions

View File

@ -413,7 +413,13 @@ Functions</h2></td></tr>
</div><div class="memdoc">
<p>Compute the rotation between two vectors. </p>
<p>param orig vector, needs to be normalized param dest vector, needs to be normalized</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">orig</td><td>vector, needs to be normalized </td></tr>
<tr><td class="paramname">dest</td><td>vector, needs to be normalized</td></tr>
</table>
</dd>
</dl>
<dl class="section see"><dt>See also</dt><dd><a class="el" href="a00769.html" title="Include &lt;glm/gtx/quaternion.hpp&gt; to use the features of this extension. ">GLM_GTX_quaternion</a> </dd></dl>
</div>

View File

@ -153,8 +153,8 @@ namespace glm
T const& a);
/// Compute the rotation between two vectors.
/// param orig vector, needs to be normalized
/// param dest vector, needs to be normalized
/// @param orig vector, needs to be normalized
/// @param dest vector, needs to be normalized
///
/// @see gtx_quaternion
template<typename T, qualifier Q>