lemon/concepts/graph_components.h
changeset 525 9605e051942f
parent 463 88ed40ad0d4f
child 581 6d3a9eec82b4
     1.1 --- a/lemon/concepts/graph_components.h	Thu Jan 01 00:00:00 2009 +0100
     1.2 +++ b/lemon/concepts/graph_components.h	Mon Feb 23 12:10:26 2009 +0100
     1.3 @@ -114,7 +114,7 @@
     1.4      /// \brief An empty base directed graph class.
     1.5      ///
     1.6      /// This class provides the minimal set of features needed for a
     1.7 -    /// directed graph structure. All digraph concepts have to be
     1.8 +    /// directed graph structure. All digraph concepts have to
     1.9      /// conform to this base directed graph. It just provides types
    1.10      /// for nodes and arcs and functions to get the source and the
    1.11      /// target of the arcs.
    1.12 @@ -179,7 +179,7 @@
    1.13      ///
    1.14      /// This class provides the minimal set of features needed for an
    1.15      /// undirected graph structure. All undirected graph concepts have
    1.16 -    /// to be conform to this base graph. It just provides types for
    1.17 +    /// to conform to this base graph. It just provides types for
    1.18      /// nodes, arcs and edges and functions to get the
    1.19      /// source and the target of the arcs and edges,
    1.20      /// conversion from arcs to edges and function to get
    1.21 @@ -294,7 +294,7 @@
    1.22      ///
    1.23      /// This class provides beside the core digraph features
    1.24      /// core id functions for the digraph structure.
    1.25 -    /// The most of the base digraphs should be conform to this concept.
    1.26 +    /// The most of the base digraphs should conform to this concept.
    1.27      /// The id's are unique and immutable.
    1.28      template <typename _Base = BaseDigraphComponent>
    1.29      class IDableDigraphComponent : public _Base {
    1.30 @@ -372,7 +372,7 @@
    1.31      ///
    1.32      /// This class provides beside the core undirected graph features
    1.33      /// core id functions for the undirected graph structure.  The
    1.34 -    /// most of the base undirected graphs should be conform to this
    1.35 +    /// most of the base undirected graphs should conform to this
    1.36      /// concept.  The id's are unique and immutable.
    1.37      template <typename _Base = BaseGraphComponent>
    1.38      class IDableGraphComponent : public IDableDigraphComponent<_Base> {