1.1 --- a/lemon/map_iterator.h	Wed Sep 06 10:20:55 2006 +0000
     1.2 +++ b/lemon/map_iterator.h	Wed Sep 06 10:28:13 2006 +0000
     1.3 @@ -124,13 +124,13 @@
     1.4      ///
     1.5      /// Creates an iterator for the map, which iterates on the
     1.6      /// given graph item set and filters all items which mapped value
     1.7 -    /// differ from \c _value.
     1.8 +    /// is not equal to the \c _value.
     1.9      FilterMapIt(const Graph& _graph, const Map& _map, const Value& _value) 
    1.10        : Parent(_graph), map(_map), value(_value) {}
    1.11      
    1.12      /// \brief Increment operator
    1.13      ///
    1.14 -    /// Skips items which has not the given value.
    1.15 +    /// Skips items which has not mapped to the given value.
    1.16      FilterMapIt& operator++() {
    1.17        Parent::operator++();
    1.18        while (*this != INVALID && map[*this] != value) Parent::operator++();