lemon/dfs.h
changeset 1946 17eb3eaad9f8
parent 1875 98698b69a902
child 1956 a055123339d5
     1.1 --- a/lemon/dfs.h	Thu Feb 02 17:09:09 2006 +0000
     1.2 +++ b/lemon/dfs.h	Thu Feb 02 17:43:24 2006 +0000
     1.3 @@ -1442,11 +1442,11 @@
     1.4      ///
     1.5      /// This method runs the %DFS algorithm from a root node \c s.
     1.6      /// \note d.run(s) is just a shortcut of the following code.
     1.7 -    /// \code
     1.8 +    ///\code
     1.9      ///   d.init();
    1.10      ///   d.addSource(s);
    1.11      ///   d.start();
    1.12 -    /// \endcode
    1.13 +    ///\endcode
    1.14      void run(Node s) {
    1.15        init();
    1.16        addSource(s);