diff -r f67737f5727a -r e15162d8eca1 lemon/dfs.h --- a/lemon/dfs.h Tue Aug 16 16:44:57 2005 +0000 +++ b/lemon/dfs.h Tue Aug 16 19:06:59 2005 +0000 @@ -708,7 +708,7 @@ ///v. It is \ref INVALID ///if \c v is unreachable from the root(s) or \c v is a root. The ///%DFS tree used here is equal to the %DFS tree used in - ///\ref predNode(Node v). + ///\ref predNode(). ///\pre Either \ref run() or \ref start() must be called before using ///this function. ///\todo predEdge could be a better name. @@ -723,7 +723,7 @@ ///It is INVALID if \c v is unreachable from the root(s) or ///if \c v itself a root. ///The %DFS tree used here is equal to the %DFS - ///tree used in \ref pred(Node v). + ///tree used in \ref pred(). ///\pre Either \ref run() or \ref start() must be called before ///using this function. Node predNode(Node v) const { return (*_pred)[v]==INVALID ? INVALID: