Index: /trunk/psLib/src/collections/psSort.h
===================================================================
--- /trunk/psLib/src/collections/psSort.h	(revision 944)
+++ /trunk/psLib/src/collections/psSort.h	(revision 945)
@@ -1,11 +1,11 @@
 /** @file  psSort.h
  *
- *  @brief Sorts arrays
+ *  @brief Sorts vectors
  *
- *  The psSort functions use the qsort() stdlib function with a user-defined callback to sort an array of 
- *  floats. The qsort function requires the starting point of the array, number of elements in the array, size 
+ *  The psSort functions use the qsort() stdlib function with a user-defined callback to sort an array of
+ *  floats. The qsort function requires the starting point of the array, number of elements in the array, size
  *  of each element, and a pointer to a callback comparison function. Once called, qsort() will sort the array
  *  contents in ascending order according to the comparison function. The comparison function is called with
- *  two arguments that point to the objects being compared - in this case two floats. The comparison function 
+ *  two arguments that point to the objects being compared - in this case two floats. The comparison function
  *  must return an integer less than, equal to, or greater than zero if the first argument is considered to be
  *  respectively less than, equal to, or greater than the second. If two members compare as equal, their order
@@ -13,7 +13,7 @@
  *
  *  @author Ross Harman, MHPCC
- *   
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-05-12 18:07:22 $
+ *
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-09 18:23:22 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -50,5 +50,5 @@
 /** Creates an array of indices based on sort odred of float array.
  *
- *  Sorts an array of floats and creates an integer array holding indices of sorted float values based on 
+ *  Sorts an array of floats and creates an integer array holding indices of sorted float values based on
  *  pre-sort index positions.
  *
Index: /trunk/psLib/src/collections/psVector.c
===================================================================
--- /trunk/psLib/src/collections/psVector.c	(revision 944)
+++ /trunk/psLib/src/collections/psVector.c	(revision 945)
@@ -1,24 +1,13 @@
-/** @file  psVector.h
+/** @file  psVector.c
  *
  *  @brief Contains support for basic vector types
  *
- *  This file defines types and functions for one dimensional vectors which include:
- *      char
- *      short
- *      int
- *      long
- *      unsigned char
- *      unsigned short
- *      unsigned int
- *      unsigned long
- *      float
- *      double
- *      complex float
- *      void **
+ *  This file defines the basic type for a vector struct and functions useful
+ *  in manupulating vectors.
  *
  *  @author Ross Harman, MHPCC
- *   
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-04 21:10:26 $
+ *
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-09 18:20:01 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Index: /trunk/psLib/src/mathtypes/psVector.c
===================================================================
--- /trunk/psLib/src/mathtypes/psVector.c	(revision 944)
+++ /trunk/psLib/src/mathtypes/psVector.c	(revision 945)
@@ -1,24 +1,13 @@
-/** @file  psVector.h
+/** @file  psVector.c
  *
  *  @brief Contains support for basic vector types
  *
- *  This file defines types and functions for one dimensional vectors which include:
- *      char
- *      short
- *      int
- *      long
- *      unsigned char
- *      unsigned short
- *      unsigned int
- *      unsigned long
- *      float
- *      double
- *      complex float
- *      void **
+ *  This file defines the basic type for a vector struct and functions useful
+ *  in manupulating vectors.
  *
  *  @author Ross Harman, MHPCC
- *   
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-04 21:10:26 $
+ *
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-09 18:20:01 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
