Skip to content

Commit aa76f94

Browse files
nicolasstuckisjrd
andauthored
Update docs/docs/reference/contextual/relationship-implicits.md
Co-Authored-By: Sébastien Doeraene <[email protected]>
1 parent 5f895db commit aa76f94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/reference/contextual/relationship-implicits.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ final implicit def given_Context = ctx
5050
Anonymous given instances get compiler synthesized names, which are generated in a reproducible way from the implemented type(s). For example, if the names of the `IntOrd` and `ListOrd` givens above were left out, the following names would be synthesized instead:
5151
```scala
5252
given given_Ord_Int as Ord[Int] { ... }
53-
given given_Ord_List_T as Ord[List[T]] { ... }
53+
given given_Ord_List_T[T](using ord: Ord[T]) as Ord[List[T]] { ... }
5454
```
5555
The synthesized type names are formed from
5656

0 commit comments

Comments
 (0)