# HG changeset patch # User deba # Date 1157538493 0 # Node ID 5617107d27e94000d2bd8e268f729115e5775a3d # Parent 5f1a83b565fb7de46b8b68518c25b49a68ad8d90 Some doc fix diff -r 5f1a83b565fb -r 5617107d27e9 lemon/map_iterator.h --- a/lemon/map_iterator.h Wed Sep 06 10:20:55 2006 +0000 +++ b/lemon/map_iterator.h Wed Sep 06 10:28:13 2006 +0000 @@ -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++();