lemon/graph_utils.h
changeset 1536 308150155bb5
parent 1531 a3b20dd847b5
child 1538 777834118f73
     1.1 --- a/lemon/graph_utils.h	Mon Jul 04 16:18:11 2005 +0000
     1.2 +++ b/lemon/graph_utils.h	Mon Jul 04 16:27:54 2005 +0000
     1.3 @@ -177,7 +177,7 @@
     1.4    ///   ...
     1.5    /// }
     1.6    /// \endcode
     1.7 -  /// \todo We may want to use the \ref concept::GraphBase "GraphBase"
     1.8 +  /// \todo We may want to use the "GraphBase"
     1.9    /// interface here...
    1.10    /// \bug Untested ...
    1.11    template <typename Graph>
    1.12 @@ -859,10 +859,10 @@
    1.13      /// \brief The subscript operator.
    1.14      ///
    1.15      /// The subscript operator.
    1.16 -    /// \param edge The edge 
    1.17 +    /// \param e The edge 
    1.18      /// \return The target of the edge 
    1.19 -    Value operator[](const Key& key) {
    1.20 -      return graph.target(key);
    1.21 +    Value operator[](const Key& e) {
    1.22 +      return graph.target(e);
    1.23      }
    1.24  
    1.25    private: