diff --git a/src/post_modules/_ADT/circular_list.cmod b/src/post_modules/_ADT/circular_list.cmod
index 923885cb6a46f98b78b6fdb9087369332aa89656..bce145f50387de274cc106e280df2e5abd4610fe 100644
--- a/src/post_modules/_ADT/circular_list.cmod
+++ b/src/post_modules/_ADT/circular_list.cmod
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: circular_list.cmod,v 1.3 2003/04/05 13:39:45 grubba Exp $
+|| $Id: circular_list.cmod,v 1.4 2003/04/07 16:11:49 nilsson Exp $
 */
 
 #include "global.h"
@@ -394,7 +394,7 @@ PIKECLASS CircularList
  *! @param value
  *!   The value to find
  *!
- *! @param int start
+ *! @param start
  *!   If a start value is supplied it will start searching at the index 
  *!   @[start].
  *!
@@ -695,7 +695,7 @@ PIKECLASS CircularList
     RETURN THIS->a->size;
   }
 
-  /*! @decl peekBack()
+  /*! @decl mixed peekBack()
    *!
    *! @returns
    *!    The value at the back of the list but do not remove it from the list.
@@ -715,7 +715,7 @@ PIKECLASS CircularList
     Pike_sp++;
   }
 
-  /*! @decl peekFront()
+  /*! @decl mixed peekFront()
    *!
    *! @returns
    *!    The value at the front of the list but do not remove it from the list.
@@ -734,7 +734,7 @@ PIKECLASS CircularList
     Pike_sp++;
   }
   
-  /*! @decl popBack()
+  /*! @decl mixed popBack()
    *! 
    *! Remove the value at the back of the list and return it.
    *!
@@ -758,7 +758,7 @@ PIKECLASS CircularList
   }
 
   
-  /*! @decl popFront()
+  /*! @decl mixed popFront()
    *! 
    *! Remove the value at the front of the list and return it.
    *!
@@ -786,7 +786,7 @@ PIKECLASS CircularList
   }
   
   
-  /*! @decl pushBack(mixed value)
+  /*! @decl void pushBack(mixed value)
    *! 
    *! Add a new value at the end of the list.
    *!
@@ -810,7 +810,7 @@ PIKECLASS CircularList
   }
 
   
-  /*! @decl pushFront(mixed value)
+  /*! @decl void pushFront(mixed value)
    *! 
    *! Add a new value at the end of the list.
    *!
@@ -1200,7 +1200,7 @@ PIKECLASS CircularList
     }
 	
     
-    /*! @decl int '<(object iter)
+    /*! @decl int `<(object iter)
      *!    Less then operator
      *!
      *! @returns
@@ -1223,7 +1223,7 @@ PIKECLASS CircularList
     }
 	
 
-    /*! @decl int '<(object iter)
+    /*! @decl int `<(object iter)
      *!    Greater then operator
      *!
      *! @returns