diff -r 88ed40ad0d4f -r 9605e051942f lemon/concepts/graph_components.h --- a/lemon/concepts/graph_components.h Thu Jan 01 00:00:00 2009 +0100 +++ b/lemon/concepts/graph_components.h Mon Feb 23 12:10:26 2009 +0100 @@ -114,7 +114,7 @@ /// \brief An empty base directed graph class. /// /// This class provides the minimal set of features needed for a - /// directed graph structure. All digraph concepts have to be + /// directed graph structure. All digraph concepts have to /// conform to this base directed graph. It just provides types /// for nodes and arcs and functions to get the source and the /// target of the arcs. @@ -179,7 +179,7 @@ /// /// This class provides the minimal set of features needed for an /// undirected graph structure. All undirected graph concepts have - /// to be conform to this base graph. It just provides types for + /// to conform to this base graph. It just provides types for /// nodes, arcs and edges and functions to get the /// source and the target of the arcs and edges, /// conversion from arcs to edges and function to get @@ -294,7 +294,7 @@ /// /// This class provides beside the core digraph features /// core id functions for the digraph structure. - /// The most of the base digraphs should be conform to this concept. + /// The most of the base digraphs should conform to this concept. /// The id's are unique and immutable. template class IDableDigraphComponent : public _Base { @@ -372,7 +372,7 @@ /// /// This class provides beside the core undirected graph features /// core id functions for the undirected graph structure. The - /// most of the base undirected graphs should be conform to this + /// most of the base undirected graphs should conform to this /// concept. The id's are unique and immutable. template class IDableGraphComponent : public IDableDigraphComponent<_Base> {