[Lemon-commits] deba: r3416 - lemon/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Dec 10 17:34:31 CET 2007


Author: deba
Date: Mon Dec 10 17:34:31 2007
New Revision: 3416

Modified:
   lemon/trunk/lemon/dijkstra.h

Log:
Bug fix in doc



Modified: lemon/trunk/lemon/dijkstra.h
==============================================================================
--- lemon/trunk/lemon/dijkstra.h	(original)
+++ lemon/trunk/lemon/dijkstra.h	Mon Dec 10 17:34:31 2007
@@ -64,7 +64,7 @@
     static Value zero() {
       return std::numeric_limits<Value>::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);
     }



More information about the Lemon-commits mailing list