From 8cf5db2d9718822d05b6fcd5aac15688b1a2df60 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 1 May 2023 20:07:30 -0700 Subject: [PATCH] Update generators_ref.md --- doc/generators_ref.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/generators_ref.md b/doc/generators_ref.md index 064219ac..c4b503e8 100644 --- a/doc/generators_ref.md +++ b/doc/generators_ref.md @@ -197,7 +197,7 @@ Generates strings. Essentially equivalent to `gen::container(gen::charac ### `Gen inRange(T min, T max)` -Generates an integer between `min` (inclusive) and `max` (exclusive). The part of the range that is used grows with size and when size is `0`, only `min` is generated. When shrinking, the value will shrink towards `min`. +Generates a value between `min` (inclusive) and `max` (exclusive). The part of the range that is used grows with size and when size is `0`, only `min` is generated. When shrinking, the value will shrink towards `min`. ```C++ // Example: