Index: trunk/psLib/src/collections/psHash.h
===================================================================
--- trunk/psLib/src/collections/psHash.h	(revision 4343)
+++ trunk/psLib/src/collections/psHash.h	(revision 4352)
@@ -11,6 +11,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-22 03:00:27 $
+ *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-22 23:48:39 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -52,5 +52,5 @@
 /// Insert entry into table.
 bool psHashAdd(
-    psHash* table,                     ///< The table to insert in.
+    psHash* hash,                      ///< The table to insert in.
     const char *key,                   ///< The key to use.
     psPtr data                         ///< The data to insert.
@@ -59,5 +59,5 @@
 /// Lookup key in table.
 psPtr psHashLookup(
-    const psHash* table,               ///< The table to lookup key in.
+    const psHash* hash,                ///< The table to lookup key in.
     const char *key                    ///< The key to lookup.
 );
@@ -65,5 +65,5 @@
 /// Remove key from table.
 bool psHashRemove(
-    psHash* table,                     ///< The table to lookup key in.
+    psHash* hash,                      ///< The table to lookup key in.
     const char *key                    ///< The key to lookup.
 );
@@ -79,5 +79,5 @@
  */
 psArray* psHashToArray(
-    const psHash* table                ///< The table to convert to psArray.
+    const psHash* hash                 ///< The table to convert to psArray.
 );
 
