diff --git a/lemon/graph_to_eps.h b/lemon/graph_to_eps.h
--- a/lemon/graph_to_eps.h
+++ b/lemon/graph_to_eps.h
@@ -142,7 +142,7 @@
///Constructor
///\param gr Reference to the graph to be printed.
///\param ost Reference to the output stream.
- ///By default it is std::cout.
+ ///By default, it is std::cout.
///\param pros If it is \c true, then the \c ostream referenced by \c os
///will be explicitly deallocated by the destructor.
DefaultGraphToEpsTraits(const GR &gr, std::ostream& ost = std::cout,
@@ -512,7 +512,7 @@
///Turn on/off pre-scaling
- ///By default graphToEps() rescales the whole image in order to avoid
+ ///By default, graphToEps() rescales the whole image in order to avoid
///very big or very small bounding boxes.
///
///This (p)rescaling can be turned off with this function.
@@ -1114,7 +1114,7 @@
///Generates an EPS file from a graph.
///\param g Reference to the graph to be printed.
///\param os Reference to the output stream.
-///By default it is std::cout.
+///By default, it is std::cout.
///
///This function also has a lot of
///\ref named-templ-func-param "named parameters",
@@ -1126,7 +1126,7 @@
/// .arcWidthScale(.4).run();
///\endcode
///
-///For more detailed examples see the \ref graph_to_eps_demo.cc demo file.
+///For more detailed examples, see the \ref graph_to_eps_demo.cc demo file.
///
///\warning Don't forget to put the \ref GraphToEps::run() "run()"
///to the end of the parameter list.