generators.md: fix extraneous back tick in doc

This commit is contained in:
Steve Hollasch 2019-03-12 14:35:47 -07:00 committed by Martin Hořeňovský
parent e509012e64
commit 4611125801
1 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ if you want them to come out as `std::string`:
```cpp
TEST_CASE("type conversion", "[generators]") {
auto str = GENERATE(as<std::string>{}, "a", "bb", "ccc");`
auto str = GENERATE(as<std::string>{}, "a", "bb", "ccc");
REQUIRE(str.size() > 0);
}
```