Minor doc changes
authoralpar
Mon, 07 Mar 2005 08:54:45 +0000
changeset 1204c3e29c6ae4e4
parent 1203 14f951664a63
child 1205 a9a3354b01d4
Minor doc changes
src/lemon/alteration_notifier.h
src/lemon/fib_heap.h
     1.1 --- a/src/lemon/alteration_notifier.h	Mon Mar 07 07:57:06 2005 +0000
     1.2 +++ b/src/lemon/alteration_notifier.h	Mon Mar 07 08:54:45 2005 +0000
     1.3 @@ -65,7 +65,7 @@
     1.4      /// erased.
     1.5      ///
     1.6      /// The build() and clear() members are to notify the observer
     1.7 -    /// about the container is builded from an empty container or
     1.8 +    /// about the container is built from an empty container or
     1.9      /// is cleared to an empty container. 
    1.10      /// 
    1.11      /// \author Balazs Dezso
    1.12 @@ -146,10 +146,10 @@
    1.13        virtual void erase(const Item&) = 0;
    1.14  
    1.15        /// \brief The member function to notificate the observer about the
    1.16 -      /// container is builded.
    1.17 +      /// container is built.
    1.18        ///
    1.19        /// The build() member function notificates the observer about the
    1.20 -      /// container is builded from an empty container. It have to be
    1.21 +      /// container is built from an empty container. It have to be
    1.22        /// overrided in the subclasses.
    1.23  
    1.24        virtual void build() = 0;
    1.25 @@ -253,9 +253,9 @@
    1.26      }
    1.27      
    1.28  
    1.29 -    /// Notifies all the registered observers about the container is builded.
    1.30 +    /// Notifies all the registered observers about the container is built.
    1.31  		
    1.32 -    /// Notifies all the registered observers about the container is builded
    1.33 +    /// Notifies all the registered observers about the container is built
    1.34      /// from an empty container.
    1.35      void build() {
    1.36        typename Container::iterator it;
     2.1 --- a/src/lemon/fib_heap.h	Mon Mar 07 07:57:06 2005 +0000
     2.2 +++ b/src/lemon/fib_heap.h	Mon Mar 07 08:54:45 2005 +0000
     2.3 @@ -44,8 +44,8 @@
     2.4    ///
     2.5    ///\param Item Type of the items to be stored.  
     2.6    ///\param Prio Type of the priority of the items.
     2.7 -  ///\param ItemIntMap A read and writable Item int map, for the usage of
     2.8 -  ///the heap.
     2.9 +  ///\param ItemIntMap A read and writable Item int map, used internally
    2.10 +  ///to handle the cross references.
    2.11    ///\param Compare A class for the ordering of the priorities. The
    2.12    ///default is \c std::less<Prio>.
    2.13    ///