Index: trunk/psLib/src/collections/psHash.h
===================================================================
--- trunk/psLib/src/collections/psHash.h	(revision 3264)
+++ trunk/psLib/src/collections/psHash.h	(revision 4135)
@@ -1,3 +1,2 @@
-
 /** @file  psHash.h
  *  @brief Contains support for basic hashing functions.
@@ -9,9 +8,9 @@
  *
  *  @author Robert Lupton, Princeton University
- *  @author George Gusciora, MHPCC
  *  @author Robert DeSonia, MHPCC
+ *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:23 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-07 22:36:48 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -29,7 +28,7 @@
 typedef struct psHashBucket
 {
-    char *key;                         ///< key for this item of data
-    psPtr data;                        ///< the data itself
-    struct psHashBucket* next;         ///< list of other possible keys
+    char *key;                         ///< The key for this item of data.
+    psPtr data;                        ///< The data itself.
+    struct psHashBucket* next;         ///< The list of other possible keys.
 }
 psHashBucket;
@@ -52,24 +51,24 @@
 /// Insert entry into table.
 psBool psHashAdd(
-    psHash* table,                 ///< table to insert in
-    const char *key,               ///< key to use
-    psPtr data                     ///< data to insert
+    psHash* table,                 ///< The table to insert in.
+    const char *key,               ///< The key to use.
+    psPtr data                     ///< The data to insert.
 );
 
 /// Lookup key in table.
 psPtr psHashLookup(
-    psHash* table,                 ///< table to lookup key in
-    const char *key                ///< key to lookup
+    psHash* table,                 ///< The table to lookup key in.
+    const char *key                ///< The key to lookup.
 );
 
 /// Remove key from table.
 psBool psHashRemove(
-    psHash* table,                 ///< table to lookup key in
-    const char *key                ///< key to lookup
+    psHash* table,                 ///< The table to lookup key in.
+    const char *key                ///< The key to lookup.
 );
 
 /// List all keys in table.
 psList* psHashKeyList(
-    psHash* table                  ///< table to list keys from.
+    psHash* table                  ///< The table to list keys from..
 );
 
@@ -79,5 +78,5 @@
  */
 psArray* psHashToArray(
-    psHash* table                  ///< table to convert to psArray
+    psHash* table                  ///< The table to convert to psArray.
 );
 
