From 8c6a2c04966cdbafc7a70971134d4af8e1064bdc Mon Sep 17 00:00:00 2001 From: Bojan Dunaj Date: Mon, 28 Oct 2019 06:09:32 +0100 Subject: [PATCH] Fix typo --- docs/docs/reference/contextual/multiversal-equality.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/contextual/multiversal-equality.md b/docs/docs/reference/contextual/multiversal-equality.md index 434486d8cc07..9456b42a99e6 100644 --- a/docs/docs/reference/contextual/multiversal-equality.md +++ b/docs/docs/reference/contextual/multiversal-equality.md @@ -94,7 +94,7 @@ Instead of defining `Eql` instances directly, it is often more convenient to der ```scala class Box[T](x: T) derives Eql ``` -By the usual rules if [typeclass derivation](./derivation.md), +By the usual rules of [typeclass derivation](./derivation.md), this generates the following `Eql` instance in the companion object of `Box`: ```scala given [T, U](given Eql[T, U]) : Eql[Box[T], Box[U]] = Eql.derived