Index: boost/random/ranlux.hpp =================================================================== --- boost/random/ranlux.hpp (revision 81014) +++ boost/random/ranlux.hpp (working copy) @@ -37,7 +37,7 @@ * The levels are given in * * @blockquote - * "RANLUX: A Fortran implementation ofthe high-quality + * "RANLUX: A Fortran implementation of the high-quality * pseudorandom number generator of Luescher", F. James, * Computer Physics Communications 79 (1994) 111-114 * @endblockquote Index: libs/random/example/die.cpp =================================================================== --- libs/random/example/die.cpp (revision 81014) +++ libs/random/example/die.cpp (working copy) @@ -41,7 +41,7 @@ [warning Contrary to common C++ usage __uniform_int_distribution does not take a /half-open range/. Instead it takes a /closed range/. Given the parameters 1 and 6, __uniform_int_distribution can - can produce any of the values 1, 2, 3, 4, 5, or 6.] + produce any of the values 1, 2, 3, 4, 5, or 6.] >>*/ boost::random::uniform_int_distribution<> dist(1, 6); /*<< A distribution is a function object. We generate a random