Skip to content

Commit

Permalink
Merge pull request #2342 from lenguyenthanh/patch-1
Browse files Browse the repository at this point in the history
Fix link to for type lambdas url
  • Loading branch information
bishabosha authored Mar 9, 2022
2 parents 3fd5b33 + 0eae0a3 commit 1c2818b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _overviews/scala3-migration/plugin-kind-projector.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ type MyLambda[F[_], A] = EitherT[F, Int, A]
MyLambda
```

Alternatively you may use Scala 3's [Native Type Lambdas](https://dotty.epfl.ch/docs/reference/new-types/type-lambdas.html) if you do not need to cross-compile:
Alternatively you may use Scala 3's [Native Type Lambdas](https://docs.scala-lang.org/scala3/reference/new-types/type-lambdas.html) if you do not need to cross-compile:

```scala
[F[_], A] =>> EitherT[F, Int, A]
Expand Down

0 comments on commit 1c2818b

Please sign in to comment.