Explorar o código

Merge pull request #938 from pierremoreau/add_missing_keyword_symbol

Add missing '@' in the documentation #938
Christophe %!s(int64=6) %!d(string=hai) anos
pai
achega
7fe0849277
Modificáronse 2 ficheiros con 9 adicións e 3 borrados
  1. 7 1
      doc/api/a00769.html
  2. 2 2
      glm/gtx/quaternion.hpp

+ 7 - 1
doc/api/a00769.html

@@ -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>

+ 2 - 2
glm/gtx/quaternion.hpp

@@ -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>