diff -r 1f08e846df29 -r 86c49553fea5 lemon/circulation.h --- a/lemon/circulation.h Tue Aug 18 10:24:31 2009 +0200 +++ b/lemon/circulation.h Tue Aug 18 10:35:35 2009 +0200 @@ -450,9 +450,10 @@ return *_level; } - /// \brief Sets the tolerance used by algorithm. + /// \brief Sets the tolerance used by the algorithm. /// - /// Sets the tolerance used by algorithm. + /// Sets the tolerance object used by the algorithm. + /// \return (*this) Circulation& tolerance(const Tolerance& tolerance) { _tol = tolerance; return *this; @@ -460,7 +461,8 @@ /// \brief Returns a const reference to the tolerance. /// - /// Returns a const reference to the tolerance. + /// Returns a const reference to the tolerance object used by + /// the algorithm. const Tolerance& tolerance() const { return _tol; }