diff -r c3defc3590aa -r 61cc647dac99 lemon/concept/path.h --- a/lemon/concept/path.h Thu Aug 11 13:20:52 2005 +0000 +++ b/lemon/concept/path.h Thu Aug 11 14:31:06 2005 +0000 @@ -52,9 +52,9 @@ class NodeIt; class EdgeIt; - /// \param _G The graph in which the path is. + /// \param _g The graph in which the path is. /// - Path(const Graph &) {} + Path(const Graph &_g) {} /// Length of the path. int length() const {return 0;} @@ -181,7 +181,7 @@ Path &P; - ///\param _P the path you want to fill in. + ///\param _p the path you want to fill in. /// Builder(Path &_p) : P(_p) {}