[Lemon-commits] [lemon_svn] deba: r2929 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 21:51:18 CET 2006


Author: deba
Date: Wed Sep  6 12:28:13 2006
New Revision: 2929

Modified:
   hugo/trunk/lemon/map_iterator.h

Log:
Some doc fix



Modified: hugo/trunk/lemon/map_iterator.h
==============================================================================
--- hugo/trunk/lemon/map_iterator.h	(original)
+++ hugo/trunk/lemon/map_iterator.h	Wed Sep  6 12:28:13 2006
@@ -124,13 +124,13 @@
     ///
     /// Creates an iterator for the map, which iterates on the
     /// given graph item set and filters all items which mapped value
-    /// differ from \c _value.
+    /// is not equal to the \c _value.
     FilterMapIt(const Graph& _graph, const Map& _map, const Value& _value) 
       : Parent(_graph), map(_map), value(_value) {}
     
     /// \brief Increment operator
     ///
-    /// Skips items which has not the given value.
+    /// Skips items which has not mapped to the given value.
     FilterMapIt& operator++() {
       Parent::operator++();
       while (*this != INVALID && map[*this] != value) Parent::operator++();



More information about the Lemon-commits mailing list