[Lemon-commits] [lemon_svn] alpar: r2510 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:53:11 CET 2006


Author: alpar
Date: Tue Jan 31 21:16:53 2006
New Revision: 2510

Modified:
   hugo/trunk/lemon/graph_reader.h

Log:
Spellcheck

Modified: hugo/trunk/lemon/graph_reader.h
==============================================================================
--- hugo/trunk/lemon/graph_reader.h	(original)
+++ hugo/trunk/lemon/graph_reader.h	Tue Jan 31 21:16:53 2006
@@ -316,7 +316,7 @@
     /// \brief Gives back the node by its label.
     ///
     /// It reads an label from the stream and gives back which node belongs to
-    /// it. It is possible only if there was read an "label" named node map.
+    /// it. It is possible only if there was read a "label" named node map.
     void readLabel(std::istream& is, Node& node) const {
       nodeset_reader.readLabel(is, node);
     } 
@@ -324,7 +324,7 @@
     /// \brief Gives back the edge by its label.
     ///
     /// It reads an label from the stream and gives back which edge belongs to
-    /// it. It is possible only if there was read an "label" named edge map.
+    /// it. It is possible only if there was read a "label" named edge map.
     void readLabel(std::istream& is, Edge& edge) const {
       return edgeset_reader.readLabel(is, edge);
     } 
@@ -722,15 +722,15 @@
     /// \brief Gives back the node by its label.
     ///
     /// It reads an label from the stream and gives back which node belongs to
-    /// it. It is possible only if there was read an "label" named node map.
+    /// it. It is possible only if there was read a "label" named node map.
     void readLabel(std::istream& is, Node& node) const {
       return nodeset_reader.readLabel(is, node);
     } 
 
-    /// \brief Gives back the edge by its label.
+    /// \brief Gives back the edge by its label
     ///
     /// It reads an label from the stream and gives back which edge belongs to
-    /// it. It is possible only if there was read an "label" named edge map.
+    /// it. It is possible only if there was read a "label" named edge map.
     void readLabel(std::istream& is, Edge& edge) const {
       return u_edgeset_reader.readLabel(is, edge);
     } 
@@ -738,7 +738,7 @@
     /// \brief Gives back the undirected edge by its label.
     ///
     /// It reads an label from the stream and gives back which undirected edge 
-    /// belongs to it. It is possible only if there was read an "label" named 
+    /// belongs to it. It is possible only if there was read a "label" named 
     /// edge map.
     void readLabel(std::istream& is, UEdge& uedge) const {
       return u_edgeset_reader.readLabel(is, uedge);



More information about the Lemon-commits mailing list