# HG changeset patch
# User Alpar Juttner <alpar@cs.elte.hu>
# Date 1223468164 -3600
# Node ID 1871777f62b7c666579d6dd1d6f235d1fdef2cc4
# Parent  9db8964f0cf6cd936aba513d7dde0d7bb7d187e8# Parent  8c05947fc107554c05a46c8480e0df090e46a7c3
Merge

diff -r 9db8964f0cf6 -r 1871777f62b7 lemon/core.h
--- a/lemon/core.h	Wed Oct 08 13:40:20 2008 +0200
+++ b/lemon/core.h	Wed Oct 08 13:16:04 2008 +0100
@@ -58,7 +58,7 @@
   /// \addtogroup gutils
   /// @{
 
-  ///Create convenient typedefs for the digraph types and iterators
+  ///Create convenience typedefs for the digraph types and iterators
 
   ///This \c \#define creates convenient type definitions for the following
   ///types of \c Digraph: \c Node,  \c NodeIt, \c Arc, \c ArcIt, \c InArcIt,
@@ -80,9 +80,9 @@
   typedef Digraph::NodeMap<double> DoubleNodeMap;                       \
   typedef Digraph::ArcMap<bool> BoolArcMap;                             \
   typedef Digraph::ArcMap<int> IntArcMap;                               \
-  typedef Digraph::ArcMap<double> DoubleArcMap;
+  typedef Digraph::ArcMap<double> DoubleArcMap
 
-  ///Create convenient typedefs for the digraph types and iterators
+  ///Create convenience typedefs for the digraph types and iterators
 
   ///\see DIGRAPH_TYPEDEFS
   ///
@@ -100,9 +100,9 @@
   typedef typename Digraph::template NodeMap<double> DoubleNodeMap;     \
   typedef typename Digraph::template ArcMap<bool> BoolArcMap;           \
   typedef typename Digraph::template ArcMap<int> IntArcMap;             \
-  typedef typename Digraph::template ArcMap<double> DoubleArcMap;
+  typedef typename Digraph::template ArcMap<double> DoubleArcMap
 
-  ///Create convenient typedefs for the graph types and iterators
+  ///Create convenience typedefs for the graph types and iterators
 
   ///This \c \#define creates the same convenient type definitions as defined
   ///by \ref DIGRAPH_TYPEDEFS(Graph) and six more, namely it creates
@@ -119,9 +119,9 @@
   typedef Graph::IncEdgeIt IncEdgeIt;                                   \
   typedef Graph::EdgeMap<bool> BoolEdgeMap;                             \
   typedef Graph::EdgeMap<int> IntEdgeMap;                               \
-  typedef Graph::EdgeMap<double> DoubleEdgeMap;
+  typedef Graph::EdgeMap<double> DoubleEdgeMap
 
-  ///Create convenient typedefs for the graph types and iterators
+  ///Create convenience typedefs for the graph types and iterators
 
   ///\see GRAPH_TYPEDEFS
   ///
@@ -134,7 +134,7 @@
   typedef typename Graph::IncEdgeIt IncEdgeIt;                          \
   typedef typename Graph::template EdgeMap<bool> BoolEdgeMap;           \
   typedef typename Graph::template EdgeMap<int> IntEdgeMap;             \
-  typedef typename Graph::template EdgeMap<double> DoubleEdgeMap;
+  typedef typename Graph::template EdgeMap<double> DoubleEdgeMap
 
   /// \brief Function to count the items in a graph.
   ///