From 7e3173c795e4719266017687db5c5015874a4747 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Sun, 3 Aug 2025 22:52:29 +0200 Subject: [PATCH] Fix wrong description of `-Yimplicit-to-given` flag in 3.7.2 release notes --- _posts/2025-08-01-release-notes-3.7.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2025-08-01-release-notes-3.7.2.md b/_posts/2025-08-01-release-notes-3.7.2.md index 8585ee5ee..79ae3c2ba 100644 --- a/_posts/2025-08-01-release-notes-3.7.2.md +++ b/_posts/2025-08-01-release-notes-3.7.2.md @@ -14,7 +14,7 @@ Scala 3.7.2 is now available! - Experimental publish support for the Sonatype Central Portal - Add an `-Yimplicit-to-given` flag for rewrites to easily test changes in the ecosystem [#22580](https://github.com/scala/scala3/pull/22580)
-This experimental flag allows to treat usages of `implicit` as `given` without modifing your existing sources. It aims to help with testing out on how migration to new syntax and its resolution rules would effect your code base. +This experimental flag when used in conjunction with `--rewrite` allows to migrate most of `implicit` definitions as `given`. It aims to ease with migration to new syntax, or testing how it would affect your code base. - Implement applied constructor types [#22543](https://github.com/scala/scala3/pull/22543)
It introduces new syntax allowing for easier definition of `tracked` parameters under `-language:experimental.modularity`