aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-08-02 04:54:41 -0700
committerSven Gothel <[email protected]>2009-08-02 04:54:41 -0700
commit363fe8afc173ec9bf7fda4f863ddd14cd5ceabb5 (patch)
treec519d6b6c75824afff9ee5af1871e29805821dc9 /src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java
parent91e2508661f8f922afad6379e8bcadee37900546 (diff)
Fix doc bug @arg -> @param
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java')
-rw-r--r--src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java b/src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java
index e9a5e2754..dc233ce36 100644
--- a/src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java
+++ b/src/jogl/classes/com/sun/opengl/util/GLArrayDataServer.java
@@ -21,13 +21,13 @@ public class GLArrayDataServer extends GLArrayDataClient implements GLArrayDataE
* EnableVertexAttribArray and VertexAttribPointer calls,
* and a predefined vertex attribute variable name will be choosen.
*
- * @arg index The GL array index
- * @arg name The optional custom name for the GL array index, maybe null.
+ * @param index The GL array index
+ * @param name The optional custom name for the GL array index, maybe null.
* If null, the default name mapping will be used, see 'getPredefinedArrayIndexName(int)'.
* This name might be used as the shader attribute name.
- * @arg comps The array component number
- * @arg dataType The array index GL data type
- * @arg normalized Wheather the data shall be normalized
+ * @param comps The array component number
+ * @param dataType The array index GL data type
+ * @param normalized Wheather the data shall be normalized
*
* @see javax.media.opengl.GLContext#getPredefinedArrayIndexName(int)
*/