[Lemon-commits] [lemon_svn] alpar: r1617 - hugo/trunk/src/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:46:36 CET 2006


Author: alpar
Date: Mon Mar  7 09:54:45 2005
New Revision: 1617

Modified:
   hugo/trunk/src/lemon/alteration_notifier.h
   hugo/trunk/src/lemon/fib_heap.h

Log:
Minor doc changes

Modified: hugo/trunk/src/lemon/alteration_notifier.h
==============================================================================
--- hugo/trunk/src/lemon/alteration_notifier.h	(original)
+++ hugo/trunk/src/lemon/alteration_notifier.h	Mon Mar  7 09:54:45 2005
@@ -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;

Modified: hugo/trunk/src/lemon/fib_heap.h
==============================================================================
--- hugo/trunk/src/lemon/fib_heap.h	(original)
+++ hugo/trunk/src/lemon/fib_heap.h	Mon Mar  7 09:54:45 2005
@@ -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<Prio>.
   ///



More information about the Lemon-commits mailing list