lemon/concepts/graph.h
changeset 1186 2e959a5a0c2d
parent 956 141f9c0db4a3
child 1217 7bf489cf624e
     1.1 --- a/lemon/concepts/graph.h	Sun Feb 24 19:44:14 2013 +0100
     1.2 +++ b/lemon/concepts/graph.h	Sun Nov 14 16:35:31 2010 +0100
     1.3 @@ -72,10 +72,10 @@
     1.4      /// \sa Digraph
     1.5      class Graph {
     1.6      private:
     1.7 -      /// Graphs are \e not copy constructible. Use DigraphCopy instead.
     1.8 +      /// Graphs are \e not copy constructible. Use GraphCopy instead.
     1.9        Graph(const Graph&) {}
    1.10        /// \brief Assignment of a graph to another one is \e not allowed.
    1.11 -      /// Use DigraphCopy instead.
    1.12 +      /// Use GraphCopy instead.
    1.13        void operator=(const Graph&) {}
    1.14  
    1.15      public: