Skip to content

Commit

Permalink
Fix lawtesting docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka Jacobowitz committed Sep 28, 2017
1 parent 9026c96 commit 55c82a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/typeclasses/lawtesting.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ import cats.laws.discipline.FunctorTests
import cats.kernel.laws.discipline.SemigroupTests
class TreeLawTests extends CatsSuite {
checkAll("Tree[Int].SemigroupLaws", SemigroupTests[Tree[Int]].semigroup)
checkAll("Tree[Int].SemigroupLaws", SemigroupLawTests[Tree[Int]].semigroup)
checkAll("Tree.FunctorLaws", FunctorTests[Tree].functor[Int, Int, String])
}
```

0 comments on commit 55c82a5

Please sign in to comment.