We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c863e commit 420a79dCopy full SHA for 420a79d
docs/docs/reference/extend/extension-methods.md
@@ -161,7 +161,7 @@ object PostConditions {
161
def result[T](implicit er: WrappedResult[T]): T = WrappedResult.unwrap(er)
162
163
extend (type T) {
164
- def ensuring[U](condition: implicit WrappedResult[T] => Boolean): T = {
+ def ensuring(condition: implicit WrappedResult[T] => Boolean): T = {
165
implicit val wrapped = WrappedResult.wrap(this)
166
assert(condition)
167
this
docs/docs/reference/extend/instance-declarations.md
@@ -38,7 +38,7 @@ trait Eql[T] {
38
}
39
40
trait HasEql[T] {
41
- def === (that: T)
+ def === (that: T): Boolean
42
43
```
44
0 commit comments