1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-04-07 19:04:46 +02:00

Removed another redundant ; (from docs)

This commit is contained in:
Phil nash 2019-04-27 18:52:38 +01:00
parent 33ce3f3953
commit 979bbf03bb

@ -79,7 +79,7 @@ E.g.
```cpp
enum class Fruits { Banana, Apple, Mango };
CATCH_REGISTER_ENUM( Fruits, Fruits::Banana, Fruits::Apple, Fruits::Mango );
CATCH_REGISTER_ENUM( Fruits, Fruits::Banana, Fruits::Apple, Fruits::Mango )
TEST_CASE() {
REQUIRE( Fruits::Mango == Fruits::Apple );