diff -r 6150d1cf0825 -r d4f411003580 lemon/johnson.h --- a/lemon/johnson.h Fri Feb 03 14:22:45 2006 +0000 +++ b/lemon/johnson.h Fri Feb 03 15:58:24 2006 +0000 @@ -151,7 +151,7 @@ /// \brief Instantiates a PredMap. /// /// This function instantiates a \ref PredMap. - /// \param G is the graph, to which we would like to define the PredMap. + /// \param graph is the graph, to which we would like to define the PredMap. /// \todo The graph alone may be insufficient for the initialization static PredMap *createPredMap(const Graph& graph) { return new PredMap(graph); @@ -167,7 +167,7 @@ /// \brief Instantiates a DistMap. /// /// This function instantiates a \ref DistMap. - /// \param G is the graph, to which we would like to define the + /// \param graph is the graph, to which we would like to define the /// \ref DistMap static DistMap *createDistMap(const _Graph& graph) { return new DistMap(graph);