diff -r e5c0c5cc477f -r 17eb3eaad9f8 lemon/floyd_warshall.h --- a/lemon/floyd_warshall.h Thu Feb 02 17:09:09 2006 +0000 +++ b/lemon/floyd_warshall.h Thu Feb 02 17:43:24 2006 +0000 @@ -117,7 +117,8 @@ /// \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); @@ -133,7 +134,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); @@ -454,10 +455,10 @@ /// - The distance between each node pairs. /// /// \note d.run(s) is just a shortcut of the following code. - /// \code + ///\code /// d.init(); /// d.start(); - /// \endcode + ///\endcode void run() { init(); start();