Index: trunk/psLib/src/collections/psArray.h
===================================================================
--- trunk/psLib/src/collections/psArray.h	(revision 1407)
+++ trunk/psLib/src/collections/psArray.h	(revision 1426)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-07 00:06:06 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 22:44:25 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -34,7 +34,7 @@
 typedef struct
 {
-    unsigned int nalloc;        // /< Total number of elements available.
-    unsigned int n;             // /< Number of elements in use.
-    psPTR *data;                // /< An Array of pointer elements
+    unsigned int nalloc;        ///< Total number of elements available.
+    unsigned int n;             ///< Number of elements in use.
+    psPTR *data;                ///< An Array of pointer elements
 }
 psArray;
@@ -54,5 +54,5 @@
  *
  */
-psArray *psArrayAlloc(unsigned int nalloc       // /< Total number of elements to make available.
+psArray *psArrayAlloc(unsigned int nalloc       ///< Total number of elements to make available.
                      );
 
@@ -65,6 +65,6 @@
  *
  */
-psArray *psArrayRealloc(unsigned int nalloc,    // /< Total number of elements to make available.
-                        psArray * restrict psArr        // /< array to reallocate.
+psArray *psArrayRealloc(unsigned int nalloc,    ///< Total number of elements to make available.
+                        psArray * restrict psArr        ///< array to reallocate.
                        );
 
@@ -76,5 +76,5 @@
  *
  */
-void psArrayElementFree(psArray * restrict psArr        // /< Void pointer array to destroy.
+void psArrayElementFree(psArray * restrict psArr        ///< Void pointer array to destroy.
                        );
 
