diff --git a/docs/generators.md b/docs/generators.md index 8ad47e39..da6e5a03 100644 --- a/docs/generators.md +++ b/docs/generators.md @@ -61,7 +61,7 @@ type, making their usage much nicer. These are * `map(func, GeneratorWrapper&&)` for `MapGenerator` (map `U` to `T`) * `chunk(chunk-size, GeneratorWrapper&&)` for `ChunkGenerator` * `random(IntegerOrFloat a, IntegerOrFloat b)` for `RandomIntegerGenerator` or `RandomFloatGenerator` -* `range(start, end)` for `RangeGenerator` with a step size of `1` +* `range(start, end)` for `RangeGenerator` with a step size of `1` * `range(start, end, step)` for `RangeGenerator` with a custom step size @@ -98,7 +98,7 @@ if you want them to come out as `std::string`: ```cpp TEST_CASE("type conversion", "[generators]") { - auto str = GENERATE(as{}, "a", "bb", "ccc");` + auto str = GENERATE(as{}, "a", "bb", "ccc"); REQUIRE(str.size() > 0); } ```