Index: trunk/archive/pslib/include/psStdArrays.h
===================================================================
--- trunk/archive/pslib/include/psStdArrays.h	(revision 149)
+++ trunk/archive/pslib/include/psStdArrays.h	(revision 153)
@@ -4,6 +4,8 @@
 #include "psArray.h"
 
-/* ps- typedefs so that array names comply with the standard naming convention */
-/* These should not be used generally. */
+/**
+ * ps- typedefs so that array names comply with the standard naming convention. These should NOT be used
+ * generally.
+ */
 typedef float psFloat;
 typedef int psInt;
@@ -11,17 +13,17 @@
 typedef double psDouble;
 
-/* An array of real numbers */
+/** An array of real numbers */
 PS_DECLARE_ARRAY_TYPE(psFloat);
 PS_CREATE_ARRAY_TYPE(psFloat);
 
-/* An array of complex numbers */
+/** An array of complex numbers */
 PS_DECLARE_ARRAY_TYPE(psComplex);
 PS_CREATE_ARRAY_TYPE(psComplex);
 
-/* An array of integers */
+/** An array of integers */
 PS_DECLARE_ARRAY_TYPE(psInt);
 PS_CREATE_ARRAY_TYPE(psInt);
 
-/* An array of double-precision real numbers */
+/** An array of double-precision real numbers */
 PS_DECLARE_ARRAY_TYPE(psDouble);
 PS_CREATE_ARRAY_TYPE(psDouble);
