Skip to content

Commit 16f079c

Browse files
authored
Merge pull request #2987 from hamzaremmal/scala/scala3
Update links to use scala/scala3 instead of lampepfl/dotty
2 parents 9da6b00 + a68fdd6 commit 16f079c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+84
-84
lines changed

_ja/scala3/contribute-to-docs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Scala 3 コンパイラとライブラリへの貢献と内部に関する包括
5555
## Scala 3 Language Reference
5656
The [Dotty reference]({{ site.scala3ref }}/overview.html) は Scala 3 になる予定である。これにはさまざまな言語仕様に関する公式のプレゼンテーションや技術的情報が含まれている。
5757

58-
- [Sources](https://github.com/lampepfl/dotty/tree/main/docs/_docs)
59-
- [Issues](https://github.com/lampepfl/dotty/issues)
58+
- [Sources](https://github.com/scala/scala3/tree/main/docs/_docs)
59+
- [Issues](https://github.com/scala/scala3/issues)
6060

6161

6262
[scala3-book]: {% link _overviews/scala3-book/introduction.md %}

_overviews/FAQ/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ tool you are using. For sbt, add it to `.jvmopts`.
321321
If the stack overflow doesn't go away no matter how much stack you
322322
give the compiler, then it's a compiler bug. Please report it on the
323323
[Scala 2 bug tracker](https://github.com/scala/bug/issues) or [Scala 3
324-
bug tracker](https://github.com/lampepfl/dotty/issues), but check
324+
bug tracker](https://github.com/scala/scala3/issues), but check
325325
first if it's a duplicate of an existing ticket.
326326

327327
### I set a setting in sbt but nothing happened. Why?

_overviews/compiler-options/optimizer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ However, even when staying within these constraints, some changes performed by t
5555
- Inlined methods disappear from call stacks.
5656

5757
- This can lead to unexpected behaviors when using a debugger.
58-
- Related: line numbers (stored in bytecode) are discarded when a method is inlined into a different classfile, which also impacts debugging experience. (This [could be improved](https://github.com/scala/scala-dev/issues/3) and is expected to [progress](https://github.com/lampepfl/dotty/pull/11492).)
58+
- Related: line numbers (stored in bytecode) are discarded when a method is inlined into a different classfile, which also impacts debugging experience. (This [could be improved](https://github.com/scala/scala-dev/issues/3) and is expected to [progress](https://github.com/scala/scala3/pull/11492).)
5959

6060
- Inlining a method can delay class loading of the class where the method is defined.
6161

_overviews/contribute/bug-reporting-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Bug Reporting Guide
33
num: 8
44
---
55

6-
The Scala compiler and standard library bug tracker is located at [https://github.com/scala/bug](https://github.com/scala/bug), and for Scala 3, it is located at [github.com/lampepfl/dotty](https://github.com/lampepfl/dotty/issues). Before you submit a bug make sure that it is certainly a bug by following instructions
6+
The Scala compiler and standard library bug tracker is located at [https://github.com/scala/bug](https://github.com/scala/bug), and for Scala 3, it is located at [github.com/scala/scala3](https://github.com/scala/scala3/issues). Before you submit a bug make sure that it is certainly a bug by following instructions
77
in [Is it a Bug?](#is-it-a-bug).
88

99
## Is it a Bug?

_overviews/contribute/codereviews.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ own pull requests.
2828
<div class="container">
2929
<div class="row">
3030
<div class="span4 doc-block">
31-
<h4><a href="https://github.com/scala/scala/pulls">lampepfl/dotty</a></h4>
31+
<h4><a href="https://github.com/scala/scala3/pulls">scala/scala3</a></h4>
3232
<p>Scala 3 bug fixes and changes in the language, core libs and included tools.</p>
3333
</div>
3434
<div class="span4 doc-block">

_overviews/contribute/guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ unencumbered by copyrights or patents.
3434

3535
### Bug-fix Check List
3636
> Originally these steps cover the [Scala 2 compiler](https://github.com/scala/scala), but they also are relevant to
37-
> the [Scala 3 compiler](https://github.com/lampepfl/dotty).
37+
> the [Scala 3 compiler](https://github.com/scala/scala3).
3838
3939
This is the impatient developer's checklist for the steps to submit a bug-fix pull request to the Scala project. For more information, description and justification for the steps, follow the links in that step. Further specific instructions for the release of Scala you are targeting can be found in the `CONTRIBUTING.md` file for that [GitHub branch](https://github.com/scala/scala)
4040

_overviews/contribute/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ scala_resources:
5454
icon: fa fa-bug
5555
link: /contribute/guide.html
5656
- title: Code Reviews
57-
description: "Review pull requests against scala/scala, lampepfl/dotty, scala/scala-lang, scala/docs.scala-lang, and others."
57+
description: "Review pull requests against scala/scala, scala/scala3, scala/scala-lang, scala/docs.scala-lang, and others."
5858
icon: fa fa-eye
5959
link: /contribute/codereviews.html
6060
- title: Core Libraries
@@ -109,7 +109,7 @@ In the spree, regular project maintainers will mentor you to create your first c
109109

110110
### So you want to improve the Scala 3 compiler...
111111

112-
The [Scala 3 compiler](https://github.com/lampepfl/dotty) is an open source project.
112+
The [Scala 3 compiler](https://github.com/scala/scala3) is an open source project.
113113
If you are curious about contributing but don't know how to begin, the [Scala Center](https://scala.epfl.ch)
114114
runs the **Scala Compiler Academy** project to onboard and educate new people to the project. You can join the regular
115115
**Issue Spree**, watch in-depth videos, and read the contributing guide:
@@ -119,7 +119,7 @@ runs the **Scala Compiler Academy** project to onboard and educate new people to
119119
#### Which areas are perfect for newcomers?
120120
- Adding new linting options, which help enforce cleaner code.
121121
- Improving the clarity of error messages, so that the user understands better what went wrong.
122-
- Add IDE quick-fix actions to error messages, e.g. PR [lampepfl/dotty#18314](https://github.com/lampepfl/dotty/pull/18314).
122+
- Add IDE quick-fix actions to error messages, e.g. PR [scala/scala3#18314](https://github.com/scala/scala3/pull/18314).
123123

124124
### So you want to write a library...
125125

@@ -162,7 +162,7 @@ When contributing, please follow:
162162

163163
### Community tickets
164164

165-
All issues can be found in the [Scala bug tracker](https://github.com/scala/bug), or the [Scala 3 issue tracker](https://github.com/lampepfl/dotty/issues). Most issues are labeled
165+
All issues can be found in the [Scala bug tracker](https://github.com/scala/bug), or the [Scala 3 issue tracker](https://github.com/scala/scala3/issues). Most issues are labeled
166166
to make it easier to find issues you are interested in.
167167

168168
### Tools and libraries

_overviews/contribute/scala-standard-library-api-documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ package objects for important packages (these often get overlooked for documenta
3939
and are a good place for API overviews).
4040

4141
If you find an issue, please log it in the [Scala bug tracker](https://github.com/scala/bug),
42-
(or else the [Scala 3 issue tracker](https://github.com/lampepfl/dotty/issues) for Scala 3 library additions)
42+
(or else the [Scala 3 issue tracker](https://github.com/scala/scala3/issues) for Scala 3 library additions)
4343
**after making sure it is not already logged as an issue**. To help with
4444
disambiguation, please use the following format for issue title:
4545

_overviews/scala3-migration/incompat-other-changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class C extends B // In Scala 3, Error: class C needs to be abstract, since def
124124
{% endtab %}
125125
{% endtabs %}
126126

127-
This behavior was decided in [Dotty issue #4770](https://github.com/lampepfl/dotty/issues/4770).
127+
This behavior was decided in [Dotty issue #4770](https://github.com/scala/scala3/issues/4770).
128128

129129
An easy fix is simply to remove the abstract def, since in practice it had no effect in Scala 2.
130130

@@ -264,7 +264,7 @@ val pojo = new Pojo()
264264

265265
A type of the form `=> T` cannot be used as an argument to a type parameter anymore.
266266

267-
This decision is explained in [this comment](https://github.com/lampepfl/dotty/blob/0f1a23e008148f76fd0a1c2991b991e1dad600e8/compiler/src/dotty/tools/dotc/core/ConstraintHandling.scala#L144-L152) of the Scala 3 source code.
267+
This decision is explained in [this comment](https://github.com/scala/scala3/blob/0f1a23e008148f76fd0a1c2991b991e1dad600e8/compiler/src/dotty/tools/dotc/core/ConstraintHandling.scala#L144-L152) of the Scala 3 source code.
268268

269269
For instance, it is not allowed to pass a function of type `Int => (=> Int) => Int` to the `uncurried` method since it would assign `=> Int` to the type parameter `T2`.
270270

_overviews/scala3-migration/incompat-type-checker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Scala 3 being based on stronger theoretical foundations, these unsoundness bugs
1414
## Unsoundness Fixes in Variance checks
1515

1616
In Scala 2, default parameters and inner-classes are not subject to variance checks.
17-
It is unsound and might cause runtime failures, as demonstrated by this [test](https://github.com/lampepfl/dotty/blob/10526a7d0aa8910729b6036ee51942e05b71abf6/tests/neg/variances.scala) in the Scala 3 repository.
17+
It is unsound and might cause runtime failures, as demonstrated by this [test](https://github.com/scala/scala3/blob/10526a7d0aa8910729b6036ee51942e05b71abf6/tests/neg/variances.scala) in the Scala 3 repository.
1818

1919
The Scala 3 compiler does not permit this anymore.
2020

0 commit comments

Comments
 (0)