Skip to content
Snippets Groups Projects
Commit 4f0b1198 authored by Martin Nilsson's avatar Martin Nilsson
Browse files

Autodoc syntax fixes.

Rev: src/post_modules/_ADT/circular_list.cmod:1.4
parent 3fc76108
Branches
Tags
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT. || This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information. || 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" #include "global.h"
...@@ -394,7 +394,7 @@ PIKECLASS CircularList ...@@ -394,7 +394,7 @@ PIKECLASS CircularList
*! @param value *! @param value
*! The value to find *! The value to find
*! *!
*! @param int start *! @param start
*! If a start value is supplied it will start searching at the index *! If a start value is supplied it will start searching at the index
*! @[start]. *! @[start].
*! *!
...@@ -695,7 +695,7 @@ PIKECLASS CircularList ...@@ -695,7 +695,7 @@ PIKECLASS CircularList
RETURN THIS->a->size; RETURN THIS->a->size;
} }
/*! @decl peekBack() /*! @decl mixed peekBack()
*! *!
*! @returns *! @returns
*! The value at the back of the list but do not remove it from the list. *! The value at the back of the list but do not remove it from the list.
...@@ -715,7 +715,7 @@ PIKECLASS CircularList ...@@ -715,7 +715,7 @@ PIKECLASS CircularList
Pike_sp++; Pike_sp++;
} }
/*! @decl peekFront() /*! @decl mixed peekFront()
*! *!
*! @returns *! @returns
*! The value at the front of the list but do not remove it from the list. *! The value at the front of the list but do not remove it from the list.
...@@ -734,7 +734,7 @@ PIKECLASS CircularList ...@@ -734,7 +734,7 @@ PIKECLASS CircularList
Pike_sp++; Pike_sp++;
} }
/*! @decl popBack() /*! @decl mixed popBack()
*! *!
*! Remove the value at the back of the list and return it. *! Remove the value at the back of the list and return it.
*! *!
...@@ -758,7 +758,7 @@ PIKECLASS CircularList ...@@ -758,7 +758,7 @@ PIKECLASS CircularList
} }
/*! @decl popFront() /*! @decl mixed popFront()
*! *!
*! Remove the value at the front of the list and return it. *! Remove the value at the front of the list and return it.
*! *!
...@@ -786,7 +786,7 @@ PIKECLASS CircularList ...@@ -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. *! Add a new value at the end of the list.
*! *!
...@@ -810,7 +810,7 @@ PIKECLASS CircularList ...@@ -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. *! Add a new value at the end of the list.
*! *!
...@@ -1200,7 +1200,7 @@ PIKECLASS CircularList ...@@ -1200,7 +1200,7 @@ PIKECLASS CircularList
} }
/*! @decl int '<(object iter) /*! @decl int `<(object iter)
*! Less then operator *! Less then operator
*! *!
*! @returns *! @returns
...@@ -1223,7 +1223,7 @@ PIKECLASS CircularList ...@@ -1223,7 +1223,7 @@ PIKECLASS CircularList
} }
/*! @decl int '<(object iter) /*! @decl int `<(object iter)
*! Greater then operator *! Greater then operator
*! *!
*! @returns *! @returns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment