Index: trunk/psLib/src/collections/psScalar.h
===================================================================
--- trunk/psLib/src/collections/psScalar.h	(revision 1407)
+++ trunk/psLib/src/collections/psScalar.h	(revision 1426)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-07 00:06:06 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 22:44:25 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -32,20 +32,20 @@
 typedef struct
 {
-    psType type;                // /< Type of data.
+    psType type;                ///< Type of data.
 
     union {
-        psU8 U8;                // /< Unsigned 8-bit integer data.
-        psU16 U16;              // /< Unsigned 16-bit integer data.
-        psU32 U32;              // /< Unsigned 32-bit integer data.
-        psU64 U64;              // /< Unsigned 64-bit integer data.
-        psS8 S8;                // /< Signed 8-bit integer data.
-        psS16 S16;              // /< Signed 16-bit integer data.
-        psS32 S32;              // /< Signed 32-bit integer data.
-        psS64 S64;              // /< Signed 64-bit integer data.
-        psF32 F32;              // /< Single-precision float data.
-        psF64 F64;              // /< Double-precision float data.
-        psC32 C32;              // /< Single-precision complex data.
-        psC64 C64;              // /< Double-precision complex data.
-    } data;                     // /< Union for data types.
+        psU8 U8;                ///< Unsigned 8-bit integer data.
+        psU16 U16;              ///< Unsigned 16-bit integer data.
+        psU32 U32;              ///< Unsigned 32-bit integer data.
+        psU64 U64;              ///< Unsigned 64-bit integer data.
+        psS8 S8;                ///< Signed 8-bit integer data.
+        psS16 S16;              ///< Signed 16-bit integer data.
+        psS32 S32;              ///< Signed 32-bit integer data.
+        psS64 S64;              ///< Signed 64-bit integer data.
+        psF32 F32;              ///< Single-precision float data.
+        psF64 F64;              ///< Double-precision float data.
+        psC32 C32;              ///< Single-precision complex data.
+        psC64 C64;              ///< Double-precision complex data.
+    } data;                     ///< Union for data types.
 }
 psScalar;
@@ -65,6 +65,6 @@
  *
  */
-psScalar *psScalarAlloc(psC64 value,    // /< Data to be put into psScalar.
-                        psElemType dataType     // /< Type of data to be held by psScalar.
+psScalar *psScalarAlloc(psC64 value,    ///< Data to be put into psScalar.
+                        psElemType dataType     ///< Type of data to be held by psScalar.
                        );
 
@@ -76,5 +76,5 @@
  *
  */
-void psScalarFree(psScalar * restrict scalar    // /< Scalar to free.
+void psScalarFree(psScalar * restrict scalar    ///< Scalar to free.
                  );
 
