瀏覽代碼

Fixed doxygen warning

Christophe Riccio 14 年之前
父節點
當前提交
921175612b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      doc/pages.doxy

+ 1 - 1
doc/pages.doxy

@@ -407,7 +407,7 @@ void foo()
 	\section faq7 Should I use 'using namespace glm;'?
 	
 	This is unwise. Chances are that if 'using namespace glm;' is called, name collisions will happen. 
-	GLSL names for functions are fairly generic, so it is entirely likely that there is another function called, for example, \link glm::sqrt sqrt \endlink.
+	GLSL names for functions are fairly generic, so it is entirely likely that there is another function called, for example, \link glm::sqrt() sqrt \endlink.
 	
 	For frequent use of particular types, they can be brough into the global
 	namespace with a 'using' declaration like this: