From 76dcb4793f2da84169c3c61ea6f464b7b63fe78e Mon Sep 17 00:00:00 2001 From: Vasil Danielov Pashov Date: Sat, 30 Dec 2023 19:13:50 +0200 Subject: [PATCH] Update catch.md * Fix typos * Fix copy-paste error (gtest used instead of catch) --- doc/catch.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/catch.md b/doc/catch.md index 28c80d30..aaf50f4e 100644 --- a/doc/catch.md +++ b/doc/catch.md @@ -4,12 +4,12 @@ rapidcheck comes with some basic integrations for the catch test library. ## Usage -This support is available throught the `extras/catch` module. You can either -directly add the `extras/gtest/inclode` directory to your include path: +This support is available through the `extras/catch` module. You can either +directly add the `extras/catch/include` directory to your include path: ```cmake add_subdirectory(rapidcheck) -set include_directories(rapidcheck/extras/gtest/include) +set include_directories(rapidcheck/extras/catch/include) add_executable(MyTest main.cpp) ```