docs
authormarci
Tue, 11 May 2004 14:58:09 +0000
changeset 60681a0c2f2f7c6
parent 605 b3c57602c516
child 607 327f7cf13843
docs
src/hugo/full_graph.h
     1.1 --- a/src/hugo/full_graph.h	Tue May 11 12:09:06 2004 +0000
     1.2 +++ b/src/hugo/full_graph.h	Tue May 11 14:58:09 2004 +0000
     1.3 @@ -1,4 +1,4 @@
     1.4 -// -*- mode:C++ -*-
     1.5 +// -*- c++ -*-
     1.6  
     1.7  #ifndef HUGO_FULL_GRAPH_H
     1.8  #define HUGO_FULL_GRAPH_H
     1.9 @@ -20,7 +20,7 @@
    1.10    ///A full graph class.
    1.11  
    1.12    ///This is a simple and fast directed full graph implementation.
    1.13 -  ///It it completely static, so you can neither add nor delete either
    1.14 +  ///It is completely static, so you can neither add nor delete either
    1.15    ///edges or nodes.
    1.16    ///Otherwise it conforms to the graph interface documented under
    1.17    ///the description of \ref GraphSkeleton.