lemon/smart_graph.h
changeset 2350 eb371753e814
parent 2343 21587bc5922b
child 2381 0248790c66ea
     1.1 --- a/lemon/smart_graph.h	Mon Jan 22 12:13:57 2007 +0000
     1.2 +++ b/lemon/smart_graph.h	Tue Jan 23 12:51:39 2007 +0000
     1.3 @@ -693,7 +693,7 @@
     1.4        ///Constructor that immediately makes a snapshot
     1.5        
     1.6        ///This constructor immediately makes a snapshot of the graph.
     1.7 -      ///\param _g The graph we make a snapshot of.
     1.8 +      ///\param g The graph we make a snapshot of.
     1.9        Snapshot(SmartUGraph &g) {
    1.10          g.saveSnapshot(*this);
    1.11        }
    1.12 @@ -704,7 +704,7 @@
    1.13        ///
    1.14        ///This function can be called more than once. In case of a repeated
    1.15        ///call, the previous snapshot gets lost.
    1.16 -      ///\param _g The graph we make the snapshot of.
    1.17 +      ///\param g The graph we make the snapshot of.
    1.18        void save(SmartUGraph &g) 
    1.19        {
    1.20          g.saveSnapshot(*this);