diff -r 9ae88e7c04a7 -r e20173729589 lemon/concepts/digraph.h --- a/lemon/concepts/digraph.h Fri Nov 13 17:30:26 2009 +0100 +++ b/lemon/concepts/digraph.h Fri Nov 13 18:10:06 2009 +0100 @@ -107,7 +107,7 @@ /// Iterator class for the nodes. /// This iterator goes through each node of the digraph. - /// Its usage is quite simple, for example you can count the number + /// Its usage is quite simple, for example, you can count the number /// of nodes in a digraph \c g of type \c %Digraph like this: ///\code /// int count=0; @@ -196,7 +196,7 @@ /// This iterator goes trough the \e outgoing arcs of a certain node /// of a digraph. - /// Its usage is quite simple, for example you can count the number + /// Its usage is quite simple, for example, you can count the number /// of outgoing arcs of a node \c n /// in a digraph \c g of type \c %Digraph as follows. ///\code @@ -241,7 +241,7 @@ /// This iterator goes trough the \e incoming arcs of a certain node /// of a digraph. - /// Its usage is quite simple, for example you can count the number + /// Its usage is quite simple, for example, you can count the number /// of incoming arcs of a node \c n /// in a digraph \c g of type \c %Digraph as follows. ///\code @@ -285,7 +285,7 @@ /// Iterator class for the arcs. /// This iterator goes through each arc of the digraph. - /// Its usage is quite simple, for example you can count the number + /// Its usage is quite simple, for example, you can count the number /// of arcs in a digraph \c g of type \c %Digraph as follows: ///\code /// int count=0;