Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/catch.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
```

Expand Down