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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Now let's define our `Description` instance, asserting that `IntDescr` describes
instance Description IntDescr Int where
```

Next, we derive desciptions:
Next, we derive descriptions:

```haskell
describe :: Int -> IntDescr
Expand Down Expand Up @@ -230,7 +230,7 @@ the test to pass or fail. `apropos` by default also tests the negation of each
property to ensure it fails. You can filter out properties you don't want to
test at all using `runTestsWhere`.

`aproposTest` is a `Hedgehog` property test that tests agains the given value `a`.
`aproposTest` is a `Hedgehog` property test that tests against the given value `a`.

The return type of `runTests` is `IsString s => [(s, Property)]`, which can be
plugged straight into Hedgehog's `Group`.
Expand Down