Skip to content

Commit 322b6ff

Browse files
fix type alias
make `F` higher-order type variable in L.485
1 parent b0cdd40 commit 322b6ff

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)