diff -r 94387da47f79 -r c5fd2d996909 lemon/list_graph.h --- a/lemon/list_graph.h Thu Mar 05 10:13:20 2009 +0000 +++ b/lemon/list_graph.h Sun Mar 29 23:08:20 2009 +0200 @@ -351,14 +351,14 @@ ///Add a new node to the digraph. ///Add a new node to the digraph. - ///\return the new node. + ///\return The new node. Node addNode() { return Parent::addNode(); } ///Add a new arc to the digraph. ///Add a new arc to the digraph with source node \c s ///and target node \c t. - ///\return the new arc. + ///\return The new arc. Arc addArc(const Node& s, const Node& t) { return Parent::addArc(s, t); } @@ -1208,14 +1208,14 @@ /// \brief Add a new node to the graph. /// /// Add a new node to the graph. - /// \return the new node. + /// \return The new node. Node addNode() { return Parent::addNode(); } /// \brief Add a new edge to the graph. /// /// Add a new edge to the graph with source node \c s /// and target node \c t. - /// \return the new edge. + /// \return The new edge. Edge addEdge(const Node& s, const Node& t) { return Parent::addEdge(s, t); }