# HG changeset patch # User alpar # Date 1110185685 0 # Node ID c3e29c6ae4e448df337580b4987eb02b466280f9 # Parent 14f951664a63379fa375a2ddab9d1f2d17e38f4c Minor doc changes diff -r 14f951664a63 -r c3e29c6ae4e4 src/lemon/alteration_notifier.h --- a/src/lemon/alteration_notifier.h Mon Mar 07 07:57:06 2005 +0000 +++ b/src/lemon/alteration_notifier.h Mon Mar 07 08:54:45 2005 +0000 @@ -65,7 +65,7 @@ /// erased. /// /// The build() and clear() members are to notify the observer - /// about the container is builded from an empty container or + /// about the container is built from an empty container or /// is cleared to an empty container. /// /// \author Balazs Dezso @@ -146,10 +146,10 @@ virtual void erase(const Item&) = 0; /// \brief The member function to notificate the observer about the - /// container is builded. + /// container is built. /// /// The build() member function notificates the observer about the - /// container is builded from an empty container. It have to be + /// container is built from an empty container. It have to be /// overrided in the subclasses. virtual void build() = 0; @@ -253,9 +253,9 @@ } - /// Notifies all the registered observers about the container is builded. + /// Notifies all the registered observers about the container is built. - /// Notifies all the registered observers about the container is builded + /// Notifies all the registered observers about the container is built /// from an empty container. void build() { typename Container::iterator it; diff -r 14f951664a63 -r c3e29c6ae4e4 src/lemon/fib_heap.h --- a/src/lemon/fib_heap.h Mon Mar 07 07:57:06 2005 +0000 +++ b/src/lemon/fib_heap.h Mon Mar 07 08:54:45 2005 +0000 @@ -44,8 +44,8 @@ /// ///\param Item Type of the items to be stored. ///\param Prio Type of the priority of the items. - ///\param ItemIntMap A read and writable Item int map, for the usage of - ///the heap. + ///\param ItemIntMap A read and writable Item int map, used internally + ///to handle the cross references. ///\param Compare A class for the ordering of the priorities. The ///default is \c std::less. ///