You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/reference/contextual/relationship-implicits.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ final implicit def given_Context = ctx
50
50
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:
51
51
```scala
52
52
givengiven_Ord_Int as Ord[Int] { ... }
53
-
givengiven_Ord_List_T as Ord[List[T]] { ... }
53
+
givengiven_Ord_List_T[T](usingord: Ord[T]) as Ord[List[T]] { ... }
0 commit comments