Skip to content

Commit 2437878

Browse files
authored
Merge pull request #1976 from KisaragiEffective/patch-8
fix type alias
2 parents b8c9ca3 + 322b6ff commit 2437878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_sips/sips/2017-09-20-opaque-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ opaque type `Fix`:
482482

483483
```scala
484484
package object fixed {
485-
opaque type Fix[F_]] = F[Fix[F]]
485+
opaque type Fix[F[_]] = F[Fix[F]]
486486

487487
object Fix {
488488
def fix[F[_]](unfixed: F[Fix[F]]): Fix[F] = unfixed

0 commit comments

Comments
 (0)