Skip to content

Commit 3a136f5

Browse files
authored
fix typo in type lambda for typeclass derivation docs (#17006)
2 parents 8066f4b + 2e5f857 commit 3a136f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_docs/reference/contextual/derivation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ If `F` and `DerivingType` take the same number of arguments (`N == K`):
9999
```scala
100100
given TC[DerivingType] = TC.derived
101101
// simplified form of:
102-
given TC[ [A_1, ..., A_K] => DerivingType[A_1, ..., A_K] ] = TC.derived
102+
given TC[ [A_1, ..., A_K] =>> DerivingType[A_1, ..., A_K] ] = TC.derived
103103
```
104104
If `DerivingType` takes less arguments than `F` (`N < K`), we use only the rightmost parameters from the type lambda:
105105
```scala

0 commit comments

Comments
 (0)