Fix typos (ticket #192)
authorBalazs Dezso <deba@inf.elte.hu>
Mon, 08 Dec 2008 11:06:39 +0100
changeset 444cace3206223b
parent 439 62c1ed05e83f
child 445 b2564598b46d
Fix typos (ticket #192)
lemon/connectivity.h
lemon/max_matching.h
lemon/suurballe.h
     1.1 --- a/lemon/connectivity.h	Fri Dec 05 13:10:16 2008 +0000
     1.2 +++ b/lemon/connectivity.h	Mon Dec 08 11:06:39 2008 +0100
     1.3 @@ -295,7 +295,7 @@
     1.4    /// the same class if they are connected with directed paths in both
     1.5    /// direction.
     1.6    ///
     1.7 -  /// \param graph The graph.
     1.8 +  /// \param digraph The graph.
     1.9    /// \return The number of components
    1.10    /// \note By definition, the empty graph has zero
    1.11    /// strongly connected components.
    1.12 @@ -1225,7 +1225,7 @@
    1.13    /// Sort the nodes of a DAG into topolgical order. It also checks
    1.14    /// that the given graph is DAG.
    1.15    ///
    1.16 -  /// \param graph The graph. It must be directed and acyclic.
    1.17 +  /// \param digraph The graph. It must be directed and acyclic.
    1.18    /// \retval order A readable - writable node map. The values will be set
    1.19    /// from 0 to the number of the nodes in the graph minus one. Each values
    1.20    /// of the map will be set exactly once, the values will be set descending
     2.1 --- a/lemon/max_matching.h	Fri Dec 05 13:10:16 2008 +0000
     2.2 +++ b/lemon/max_matching.h	Mon Dec 08 11:06:39 2008 +0100
     2.3 @@ -416,7 +416,7 @@
     2.4      /// If you need better control on the execution, you must call
     2.5      /// \ref init(), \ref greedyInit() or \ref matchingInit()
     2.6      /// functions first, then you can start the algorithm with the \ref
     2.7 -    /// startParse() or startDense() functions.
     2.8 +    /// startSparse() or startDense() functions.
     2.9  
    2.10      ///@{
    2.11  
     3.1 --- a/lemon/suurballe.h	Fri Dec 05 13:10:16 2008 +0000
     3.2 +++ b/lemon/suurballe.h	Mon Dec 08 11:06:39 2008 +0100
     3.3 @@ -51,7 +51,7 @@
     3.4    /// \warning Length values should be \e non-negative \e integers.
     3.5    ///
     3.6    /// \note For finding node-disjoint paths this algorithm can be used
     3.7 -  /// with \ref SplitDigraphAdaptor.
     3.8 +  /// with \ref SplitNodes.
     3.9  #ifdef DOXYGEN
    3.10    template <typename Digraph, typename LengthMap>
    3.11  #else