# HG changeset patch # User Peter Kovacs # Date 1199368274 -3600 # Node ID 0ba375bf5daeddc1a2faa7a3c7bd1fdb964e6138 # Parent 45f8b617339ede421b3776fde736505a48be1488 Small doc improvement. diff -r 45f8b617339e -r 0ba375bf5dae lemon/random.h --- a/lemon/random.h Thu Jan 03 11:13:29 2008 +0100 +++ b/lemon/random.h Thu Jan 03 14:51:14 2008 +0100 @@ -696,7 +696,7 @@ /// \brief Returns a random bool /// - /// It returns a random bool with given probability of true result + /// It returns a random bool with given probability of true result. bool boolean(double p) { return operator()() < p; } @@ -719,7 +719,7 @@ } /// Gauss distribution with given mean and standard deviation - /// Gauss distribution with given mean and standard deviation + /// Gauss distribution with given mean and standard deviation. /// \sa gauss() double gauss(double mean,double std_dev) { @@ -809,7 +809,7 @@ ///@{ - /// Uniform distribution on the full unit circle. + /// Uniform distribution on the full unit circle /// Uniform distribution on the full unit circle. ///