From 85dcdc45e2280e25ece3ae7f9066f489e19c116e Mon Sep 17 00:00:00 2001 From: Kacper Korban Date: Tue, 18 Jun 2024 10:46:57 +0200 Subject: [PATCH] chore: Fix doc link in clauseInterleaving docstring --- library/src/scala/runtime/stdLibPatches/language.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/scala/runtime/stdLibPatches/language.scala b/library/src/scala/runtime/stdLibPatches/language.scala index 1171c62602fb..d89bd9dcf72e 100644 --- a/library/src/scala/runtime/stdLibPatches/language.scala +++ b/library/src/scala/runtime/stdLibPatches/language.scala @@ -64,7 +64,7 @@ object language: /** Adds support for clause interleaving: * Methods can now have as many type clauses as they like, this allows to have type bounds depend on terms: `def f(x: Int)[A <: x.type]: A` * - * @see [[http://dotty.epfl.ch/docs/reference/other-new-features/explicit-nulls.html]] + * @see [[https://github.com/scala/improvement-proposals/blob/main/content/clause-interleaving.md]] */ @compileTimeOnly("`clauseInterleaving` can only be used at compile time in import statements") object clauseInterleaving