lemon/graph_to_eps.h
changeset 786 e20173729589
parent 617 4137ef9aacc6
child 838 2c35bef44dd1
     1.1 --- a/lemon/graph_to_eps.h	Fri Nov 13 17:30:26 2009 +0100
     1.2 +++ b/lemon/graph_to_eps.h	Fri Nov 13 18:10:06 2009 +0100
     1.3 @@ -142,7 +142,7 @@
     1.4    ///Constructor
     1.5    ///\param gr  Reference to the graph to be printed.
     1.6    ///\param ost Reference to the output stream.
     1.7 -  ///By default it is <tt>std::cout</tt>.
     1.8 +  ///By default, it is <tt>std::cout</tt>.
     1.9    ///\param pros If it is \c true, then the \c ostream referenced by \c os
    1.10    ///will be explicitly deallocated by the destructor.
    1.11    DefaultGraphToEpsTraits(const GR &gr, std::ostream& ost = std::cout,
    1.12 @@ -512,7 +512,7 @@
    1.13  
    1.14    ///Turn on/off pre-scaling
    1.15  
    1.16 -  ///By default graphToEps() rescales the whole image in order to avoid
    1.17 +  ///By default, graphToEps() rescales the whole image in order to avoid
    1.18    ///very big or very small bounding boxes.
    1.19    ///
    1.20    ///This (p)rescaling can be turned off with this function.
    1.21 @@ -1114,7 +1114,7 @@
    1.22  ///Generates an EPS file from a graph.
    1.23  ///\param g Reference to the graph to be printed.
    1.24  ///\param os Reference to the output stream.
    1.25 -///By default it is <tt>std::cout</tt>.
    1.26 +///By default, it is <tt>std::cout</tt>.
    1.27  ///
    1.28  ///This function also has a lot of
    1.29  ///\ref named-templ-func-param "named parameters",
    1.30 @@ -1126,7 +1126,7 @@
    1.31  ///              .arcWidthScale(.4).run();
    1.32  ///\endcode
    1.33  ///
    1.34 -///For more detailed examples see the \ref graph_to_eps_demo.cc demo file.
    1.35 +///For more detailed examples, see the \ref graph_to_eps_demo.cc demo file.
    1.36  ///
    1.37  ///\warning Don't forget to put the \ref GraphToEps::run() "run()"
    1.38  ///to the end of the parameter list.