corrections in docs
authorzsuzska
Fri, 25 Mar 2005 22:11:28 +0000
changeset 126674d616d081f0
parent 1265 47c60ae9c26a
child 1267 a93f94dbe3d3
corrections in docs
src/lemon/unionfind.h
     1.1 --- a/src/lemon/unionfind.h	Fri Mar 25 22:05:54 2005 +0000
     1.2 +++ b/src/lemon/unionfind.h	Fri Mar 25 22:11:28 2005 +0000
     1.3 @@ -98,7 +98,7 @@
     1.4      }
     1.5  
     1.6      /**
     1.7 -     * \brief Insert a new element into the structure.
     1.8 +     * \brief Inserts a new element into the structure.
     1.9       *
    1.10       * This method inserts a new element into the data structure. 
    1.11       *
    1.12 @@ -122,7 +122,7 @@
    1.13       * \brief Joining the components of element \e a and element \e b.
    1.14       *
    1.15       * This is the \e union operation of the Union-Find structure. 
    1.16 -     * Joins the component of elemenent \e a and component of
    1.17 +     * Joins the component of element \e a and component of
    1.18       * element \e b. If \e a and \e b are in the same component then
    1.19       * it returns false otherwise it returns true.
    1.20       */
    1.21 @@ -263,7 +263,7 @@
    1.22  
    1.23  
    1.24      /**
    1.25 -     * \brief Insert the given element into a new component.
    1.26 +     * \brief Inserts the given element into a new component.
    1.27       *
    1.28       * This method creates a new component consisting only of the
    1.29       * given element.
    1.30 @@ -287,9 +287,9 @@
    1.31      }
    1.32  
    1.33      /**
    1.34 -     * \brief Insert the given element into the component of the others.
    1.35 +     * \brief Inserts the given element into the component of the others.
    1.36       *
    1.37 -     * This methods insert the element \e a into the component of the
    1.38 +     * This methods inserts the element \e a into the component of the
    1.39       * element \e comp. 
    1.40       */
    1.41  
    1.42 @@ -307,7 +307,7 @@
    1.43  
    1.44  
    1.45      /**
    1.46 -     * \brief Find the leader of the component of the given element.
    1.47 +     * \brief Finds the leader of the component of the given element.
    1.48       *
    1.49       * The method returns the leader of the component of the given element.
    1.50       */
    1.51 @@ -321,7 +321,7 @@
    1.52       * \brief Joining the component of element \e a and element \e b.
    1.53       *
    1.54       * This is the \e union operation of the Union-Find structure. 
    1.55 -     * Joins the component of elemenent \e a and component of
    1.56 +     * Joins the component of element \e a and component of
    1.57       * element \e b. If \e a and \e b are in the same component then
    1.58       * returns false else returns true.
    1.59       */
    1.60 @@ -374,7 +374,7 @@
    1.61  
    1.62  
    1.63      /**
    1.64 -     * \brief Split up the component of the element. 
    1.65 +     * \brief Splits up the component of the element. 
    1.66       *
    1.67       * Splitting the component of the element into sigleton
    1.68       * components (component of size one).
    1.69 @@ -405,9 +405,9 @@
    1.70  
    1.71  
    1.72      /**
    1.73 -     * \brief Set the given element to the leader element of its component.
    1.74 +     * \brief Sets the given element to the leader element of its component.
    1.75       *
    1.76 -     * Set the given element to the leader element of its component.
    1.77 +     * Sets the given element to the leader element of its component.
    1.78       */
    1.79  
    1.80      void makeRep(const T &a) {
    1.81 @@ -429,7 +429,7 @@
    1.82      }
    1.83  
    1.84      /**
    1.85 -     * \brief Move the given element to an other component.
    1.86 +     * \brief Moves the given element to an other component.
    1.87       *
    1.88       * This method moves the element \e a from its component
    1.89       * to the component of \e comp.
    1.90 @@ -483,9 +483,9 @@
    1.91  
    1.92  
    1.93      /**
    1.94 -     * \brief Remove the given element from the structure.
    1.95 +     * \brief Removes the given element from the structure.
    1.96       *
    1.97 -     * Remove the given element from the structure.
    1.98 +     * Removes the given element from the structure.
    1.99       *
   1.100       * Removes the element from its component and if the component becomes
   1.101       * empty then removes that component from the component list.