diff -r 4a2091b1796a -r 7bdd328de87a lemon/dijkstra.h --- a/lemon/dijkstra.h Mon Dec 10 16:33:37 2007 +0000 +++ b/lemon/dijkstra.h Mon Dec 10 16:34:31 2007 +0000 @@ -64,7 +64,7 @@ static Value zero() { return std::numeric_limits::max(); } - /// \brief Gives back the maximum of the given two elements. + /// \brief Gives back the minimum of the given two elements. static Value plus(const Value& left, const Value& right) { return std::min(left, right); }