Skip to content

Commit 8cf5db2

Browse files
authored
Update generators_ref.md
1 parent a5724ea commit 8cf5db2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/generators_ref.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Generates strings. Essentially equivalent to `gen::container<String>(gen::charac
197197

198198
### `Gen<T> inRange(T min, T max)`
199199

200-
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`.
200+
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`.
201201

202202
```C++
203203
// Example:

0 commit comments

Comments
 (0)