Index: /trunk/psLib/src/sys/psTrace.h
===================================================================
--- /trunk/psLib/src/sys/psTrace.h	(revision 4609)
+++ /trunk/psLib/src/sys/psTrace.h	(revision 4610)
@@ -9,6 +9,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-28 20:17:52 $
+ *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-07-26 00:44:44 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -51,12 +51,13 @@
         typedef struct p_psComponent
         {
-            const char *name;   // last part of name of component
-            psS32 level;   // trace level for this component
-            bool p_psSpecified;
-            psS32 n;    // number of subcomponents
-            struct p_psComponent* *subcomp;     // next level of subcomponents
+            const char *name;                  ///< last part of name of component
+            psS32 level;                       ///< trace level for this component
+            bool p_psSpecified;                ///< whether the component is specified
+            psS32 n;                           ///< number of subcomponents
+            struct p_psComponent* *subcomp;    ///< next level of subcomponents
         }
 p_psComponent;
 
+/** Sends a trace message. */
 #ifdef DOXYGEN
 void psTrace(
@@ -80,5 +81,8 @@
 #endif /* DOXYGEN */
 
-/// Set trace level
+/** Set trace level
+ *
+ *  @return psBool:       True if successful, otherwise false
+ */
 psBool psTraceSetLevel(
     const char *facil,                 ///< facilty of interest
@@ -86,5 +90,8 @@
 );
 
-/// Get the trace level
+/** Get the trace level
+ *
+ *  @return int:    Trace Level
+ */
 int psTraceGetLevel(
     const char *facil                  ///< facilty of interest
@@ -99,8 +106,11 @@
 /// Set the destination of future trace messages.
 void psTraceSetDestination(
-    FILE * fp                          ///<
+    FILE * fp                          ///< Pointer to file
 );
 
-/// Get the current destination for trace messages.
+/** Get the current destination for trace messages.
+ *
+ *  @return FILE*:      File Destination
+ */
 FILE *psTraceGetDestination(void);
 
Index: /trunk/psLib/src/types/psBitSet.h
===================================================================
--- /trunk/psLib/src/types/psBitSet.h	(revision 4609)
+++ /trunk/psLib/src/types/psBitSet.h	(revision 4610)
@@ -12,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-07-15 02:33:54 $
+ *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-07-26 00:44:45 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -54,6 +54,4 @@
  *  @return  psBitSet* : Pointer to struct containing array of bits and size of array.
  */
-
-/*@null@*/
 psBitSet* psBitSetAlloc(
     long nalloc                            ///< Number of bits in psBitSet array
@@ -70,5 +68,4 @@
  */
 psBitSet* psBitSetSet(
-    /* @returned@ */
     psBitSet* bitSet,                  ///< Pointer to psBitSet to be set.
     long bit                           ///< Bit to be set.
@@ -96,5 +93,5 @@
  *  value of one, since that is the value that was set.
  *
- *  @return  int: Value of bit, either one or zero.
+ *  @return  bool:      True if successful, otherwise false
  */
 
Index: /trunk/psLib/src/types/psMetadata.c
===================================================================
--- /trunk/psLib/src/types/psMetadata.c	(revision 4609)
+++ /trunk/psLib/src/types/psMetadata.c	(revision 4610)
@@ -12,6 +12,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.73 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-07-21 02:39:57 $
+*  @version $Revision: 1.74 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-07-26 00:44:45 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
Index: /trunk/psLib/src/types/psMetadata.h
===================================================================
--- /trunk/psLib/src/types/psMetadata.h	(revision 4609)
+++ /trunk/psLib/src/types/psMetadata.h	(revision 4610)
@@ -11,6 +11,6 @@
 *  @author Ross Harman, MHPCC
 *
-*  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-07-21 02:39:57 $
+*  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-07-26 00:44:45 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -238,5 +238,5 @@
 psMetadataItem* psMetadataItemAllocV(
     const char *name,                  ///< Name of metadata item.
-    psDataType type,               ///< Type of metadata item.
+    psDataType type,                   ///< Type of metadata item.
     const char *comment,               ///< Comment for metadata item.
     va_list list                       ///< Arguments for name formatting and metadata item data.
@@ -329,5 +329,5 @@
 bool psMetadataAddF64(
     psMetadata* md,                    ///< Metadata collection to insert metadata item
-    long location,                    ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
+    long location,                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     const char* name,                  ///< Name of metadata item
     const char* comment,               ///< Comment for metadata item
@@ -401,5 +401,5 @@
 psBool psMetadataAddHash(
     psMetadata* md,                    ///< Metadata collection to insert metadata item
-    long location,                    ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
+    long location,                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     const char* name,                  ///< Name of metadata item
     const char* comment,               ///< Comment for metadata item
@@ -551,5 +551,5 @@
 psMetadataItem* psMetadataGet(
     const psMetadata* md,              ///< Metadata collection to retrieve metadata item.
-    int location                      ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
+    int location                       ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
 );
 
