Small doc improvement.
1.1 --- a/lemon/random.h Thu Jan 03 11:13:29 2008 +0100
1.2 +++ b/lemon/random.h Thu Jan 03 14:51:14 2008 +0100
1.3 @@ -696,7 +696,7 @@
1.4
1.5 /// \brief Returns a random bool
1.6 ///
1.7 - /// It returns a random bool with given probability of true result
1.8 + /// It returns a random bool with given probability of true result.
1.9 bool boolean(double p) {
1.10 return operator()() < p;
1.11 }
1.12 @@ -719,7 +719,7 @@
1.13 }
1.14 /// Gauss distribution with given mean and standard deviation
1.15
1.16 - /// Gauss distribution with given mean and standard deviation
1.17 + /// Gauss distribution with given mean and standard deviation.
1.18 /// \sa gauss()
1.19 double gauss(double mean,double std_dev)
1.20 {
1.21 @@ -809,7 +809,7 @@
1.22
1.23 ///@{
1.24
1.25 - /// Uniform distribution on the full unit circle.
1.26 + /// Uniform distribution on the full unit circle
1.27
1.28 /// Uniform distribution on the full unit circle.
1.29 ///