lemon/concept/path.h
changeset 1624 61cc647dac99
parent 1435 8e85e6bbefdf
child 1643 9285f3777553
     1.1 --- a/lemon/concept/path.h	Thu Aug 11 13:20:52 2005 +0000
     1.2 +++ b/lemon/concept/path.h	Thu Aug 11 14:31:06 2005 +0000
     1.3 @@ -52,9 +52,9 @@
     1.4        class NodeIt;
     1.5        class EdgeIt;
     1.6  
     1.7 -      /// \param _G The graph in which the path is.
     1.8 +      /// \param _g The graph in which the path is.
     1.9        ///
    1.10 -      Path(const Graph &) {}
    1.11 +      Path(const Graph &_g) {}
    1.12  
    1.13        /// Length of the path.
    1.14        int length() const {return 0;}
    1.15 @@ -181,7 +181,7 @@
    1.16  
    1.17          Path &P;
    1.18  
    1.19 -	///\param _P the path you want to fill in.
    1.20 +	///\param _p the path you want to fill in.
    1.21  	///
    1.22  
    1.23  	Builder(Path &_p) : P(_p) {}