Spellcheck
authoralpar
Tue, 26 Jul 2005 20:12:36 +0000
changeset 1590ba2cb5006358
parent 1589 9192e1b26d32
child 1591 03aa0a6c8dca
Spellcheck
doc/adaptor_references.dox
lemon/graph_utils.h
lemon/matrix_graph.h
     1.1 --- a/doc/adaptor_references.dox	Tue Jul 26 18:14:23 2005 +0000
     1.2 +++ b/doc/adaptor_references.dox	Tue Jul 26 20:12:36 2005 +0000
     1.3 @@ -11,7 +11,7 @@
     1.4  \section problem The problem
     1.5  
     1.6  The adaptors usually use references or pointers to reference to an 
     1.7 -existing data structure. We may use an algorithm in the next way:
     1.8 +existing data structure. We may use an algorithm in the following was:
     1.9  \code
    1.10  function_algorithm(adaptor(structure));
    1.11  \endcode 
     2.1 --- a/lemon/graph_utils.h	Tue Jul 26 18:14:23 2005 +0000
     2.2 +++ b/lemon/graph_utils.h	Tue Jul 26 20:12:36 2005 +0000
     2.3 @@ -217,7 +217,7 @@
     2.4    ///
     2.5    /// Iterator for iterating on edges connected the same nodes. It is 
     2.6    /// higher level interface for the findEdge() function. You can
     2.7 -  /// use it the next way:
     2.8 +  /// use it the following was:
     2.9    /// \code
    2.10    /// for (ConEdgeIt<Graph> it(g, src, trg); it != INVALID; ++it) {
    2.11    ///   ...
     3.1 --- a/lemon/matrix_graph.h	Tue Jul 26 18:14:23 2005 +0000
     3.2 +++ b/lemon/matrix_graph.h	Tue Jul 26 20:12:36 2005 +0000
     3.3 @@ -261,7 +261,7 @@
     3.4    /// Two nodes are connected in the graph if the indices differ only
     3.5    /// on one position and only one is the difference. 
     3.6    ///
     3.7 -  /// The graph can be indiced in the next way:
     3.8 +  /// The graph can be indiced in the following was:
     3.9    /// \code
    3.10    /// MatrixGraph graph(h, w);
    3.11    /// MatrixGraph::NodeMap<int> val(graph);