Some doc fix
authordeba
Wed, 06 Sep 2006 10:28:13 +0000
changeset 22045617107d27e9
parent 2203 5f1a83b565fb
child 2205 c20b0eb92a33
Some doc fix
lemon/map_iterator.h
     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++();