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.