From 863c0f02ca9dcc91fe03b30b078e315c2a47bfbb Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Fri, 23 Nov 2012 23:34:09 +0000 Subject: [PATCH] Fix typo. Fixes #7645. [SVN r81502] --- example/die.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/die.cpp b/example/die.cpp index 8ed0b8f..5626a2e 100644 --- a/example/die.cpp +++ b/example/die.cpp @@ -40,7 +40,7 @@ int roll_die() { __uniform_int_distribution performs this transformation. [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 + Given the parameters 1 and 6, __uniform_int_distribution can produce any of the values 1, 2, 3, 4, 5, or 6.] >>*/ boost::random::uniform_int_distribution<> dist(1, 6);