lemon/maps.h
changeset 313 64f8f7cc6168
parent 301 9db8964f0cf6
child 314 2cc60866a0c9
     1.1 --- a/lemon/maps.h	Wed Oct 08 17:05:01 2008 +0100
     1.2 +++ b/lemon/maps.h	Thu Oct 09 10:09:44 2008 +0200
     1.3 @@ -43,7 +43,7 @@
     1.4    template<typename K, typename V>
     1.5    class MapBase {
     1.6    public:
     1.7 -    /// \biref The key type of the map.
     1.8 +    /// \brief The key type of the map.
     1.9      typedef K Key;
    1.10      /// \brief The value type of the map.
    1.11      /// (The type of objects associated with the keys).
    1.12 @@ -2266,7 +2266,7 @@
    1.13      /// \brief Constructor
    1.14      ///
    1.15      /// Constructor
    1.16 -    /// \param _digraph The digraph that the map belongs to.
    1.17 +    /// \param digraph The digraph that the map belongs to.
    1.18      explicit SourceMap(const Digraph& digraph) : _digraph(digraph) {}
    1.19  
    1.20      /// \brief The subscript operator.
    1.21 @@ -2305,7 +2305,7 @@
    1.22      /// \brief Constructor
    1.23      ///
    1.24      /// Constructor
    1.25 -    /// \param _digraph The digraph that the map belongs to.
    1.26 +    /// \param digraph The digraph that the map belongs to.
    1.27      explicit TargetMap(const Digraph& digraph) : _digraph(digraph) {}
    1.28  
    1.29      /// \brief The subscript operator.
    1.30 @@ -2344,7 +2344,7 @@
    1.31      /// \brief Constructor
    1.32      ///
    1.33      /// Constructor
    1.34 -    /// \param _graph The graph that the map belongs to.
    1.35 +    /// \param graph The graph that the map belongs to.
    1.36      explicit ForwardMap(const Graph& graph) : _graph(graph) {}
    1.37  
    1.38      /// \brief The subscript operator.
    1.39 @@ -2383,7 +2383,7 @@
    1.40      /// \brief Constructor
    1.41      ///
    1.42      /// Constructor
    1.43 -    /// \param _graph The graph that the map belongs to.
    1.44 +    /// \param graph The graph that the map belongs to.
    1.45      explicit BackwardMap(const Graph& graph) : _graph(graph) {}
    1.46  
    1.47      /// \brief The subscript operator.