Skip to content

Commit f642400

Browse files
Add note about Checkers trait (#58)
Trying to follow examples in a REPL, I spent around an hour trying to find where that `check` method comes from.
1 parent 36adf58 commit f642400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/scalachecklib/PropertiesSection.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ object PropertiesSection
7474
*
7575
* As mentioned before, `org.scalacheck.Prop.forAll` creates universally quantified properties.
7676
* `forAll` takes a function as parameter, and creates a property out of it that can be tested with the `check`
77-
* method or with Scalatest, like in these examples.
77+
* method or with Scalatest (using Checkers trait), like in these examples.
7878
*
7979
*
8080
* The function passed to `forAll` should return `Boolean` or another property, and can take parameters of any types,

0 commit comments

Comments
 (0)