Index: /trunk/psLib/src/collections/psScalar.h
===================================================================
--- /trunk/psLib/src/collections/psScalar.h	(revision 1476)
+++ /trunk/psLib/src/collections/psScalar.h	(revision 1477)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-10 19:27:56 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-11 20:08:08 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -62,10 +62,11 @@
  * Accepts a complex 64 bit float for input value, as max size, but resizes according to
  * correct type.
- * @return psScalar* : Pointer to psScalar.
  *
+ * @return psScalar*   Pointer to a new psScalar.
  */
-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.
+);
 
 /** Deallocate a scalar.
@@ -73,9 +74,8 @@
  * Uses psLib memory allocation functions to deallocate a scalar.
  *
- * @return void.
- *
  */
-void psScalarFree(psScalar* restrict scalar    ///< Scalar to free.
-                 );
+void psScalarFree(
+    psScalar* restrict scalar          ///< Scalar to free.
+);
 
 /** Copy a scalar.
@@ -83,9 +83,9 @@
  * Uses psLib memory allocation functions to copy a scalar.
  *
- * @return void.
- *
+ * @return psScalar*    A copy of the input scalar
  */
-psScalar* psScalarCopy(psScalar *scalar    ///< Scalar to copy.
-                      );
+psScalar* psScalarCopy(
+    psScalar *scalar                   ///< Scalar to copy.
+);
 
 /// @}
Index: /trunk/psLib/src/mathtypes/psScalar.h
===================================================================
--- /trunk/psLib/src/mathtypes/psScalar.h	(revision 1476)
+++ /trunk/psLib/src/mathtypes/psScalar.h	(revision 1477)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-10 19:27:56 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-11 20:08:08 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -62,10 +62,11 @@
  * Accepts a complex 64 bit float for input value, as max size, but resizes according to
  * correct type.
- * @return psScalar* : Pointer to psScalar.
  *
+ * @return psScalar*   Pointer to a new psScalar.
  */
-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.
+);
 
 /** Deallocate a scalar.
@@ -73,9 +74,8 @@
  * Uses psLib memory allocation functions to deallocate a scalar.
  *
- * @return void.
- *
  */
-void psScalarFree(psScalar* restrict scalar    ///< Scalar to free.
-                 );
+void psScalarFree(
+    psScalar* restrict scalar          ///< Scalar to free.
+);
 
 /** Copy a scalar.
@@ -83,9 +83,9 @@
  * Uses psLib memory allocation functions to copy a scalar.
  *
- * @return void.
- *
+ * @return psScalar*    A copy of the input scalar
  */
-psScalar* psScalarCopy(psScalar *scalar    ///< Scalar to copy.
-                      );
+psScalar* psScalarCopy(
+    psScalar *scalar                   ///< Scalar to copy.
+);
 
 /// @}
