diff --git a/docs/_docs/reference/contextual/givens.md b/docs/_docs/reference/contextual/givens.md index 2af94c0a8aea..1d0baae9e257 100644 --- a/docs/_docs/reference/contextual/givens.md +++ b/docs/_docs/reference/contextual/givens.md @@ -55,7 +55,7 @@ the implemented type(s). ```scala given_Ord_Int -given_Ord_List_T +given_Ord_List ``` The precise rules for synthesizing names are found [here](./relationship-implicits.html#anonymous-given-instances). These rules do not guarantee absence of name conflicts between diff --git a/docs/_docs/reference/contextual/relationship-implicits.md b/docs/_docs/reference/contextual/relationship-implicits.md index 4a23e781bd70..2d256d061e59 100644 --- a/docs/_docs/reference/contextual/relationship-implicits.md +++ b/docs/_docs/reference/contextual/relationship-implicits.md @@ -64,7 +64,7 @@ Anonymous given instances get compiler synthesized names, which are generated in ```scala given given_Ord_Int: Ord[Int] with { ... } -given given_Ord_List_T[T](using ord: Ord[T]): Ord[List[T]] with { ... } +given given_Ord_List[T](using ord: Ord[T]): Ord[List[T]] with { ... } ``` The synthesized type names are formed from