You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _overviews/scala3-scaladoc/settings.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -182,7 +182,7 @@ Define the additional sbt configuration for your Scastie snippets. For example,
182
182
183
183
##### -dynamic-side-menu
184
184
185
-
Generate the side menu (the tree-like overview of the project structure on the left-hand side) dynamically in the browser using JavaScript instead of embedding it in every HTML file. This can greatly reduce outputted HTML file sizes. Recommended for projects with 1000+ pages. For more info see [issue 18543](https://github.com/lampepfl/dotty/issues/18543).
185
+
Generate the side menu (the tree-like overview of the project structure on the left-hand side) dynamically in the browser using JavaScript instead of embedding it in every HTML file. This can greatly reduce outputted HTML file sizes. Recommended for projects with 1000+ pages. For more info see [issue 18543](https://github.com/scala/scala3/issues/18543).
Copy file name to clipboardExpand all lines: _sips/sips/binary-api.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Currently, the compiler automatically generates accessors for references to priv
33
33
* Changing the implementation of an inline definition can be a binary incompatible change
34
34
* Removing final from a class is a binary incompatible change
35
35
36
-
You can find more details in [https://github.com/lampepfl/dotty/issues/16983](https://github.com/lampepfl/dotty/issues/16983)
36
+
You can find more details in [https://github.com/scala/scala3/issues/16983](https://github.com/scala/scala3/issues/16983)
37
37
38
38
### Avoid duplication of inline accessors
39
39
@@ -249,7 +249,7 @@ Using references to `@publicInBinary` in inline code can cause binary incompatib
249
249
### Add a `@binaryAccessor`
250
250
This annotation would generate an stable accessor. This annotation could be used on `private` definition. It would also mitigate [migration costs](https://gist.github.com/nicolasstucki/003f7293941836b08a0d53dbcb913e3c) for library authors that have published unstable accessors.
* An implementation of the proposal is available as a pull request at [https://github.com/lampepfl/dotty/pull/14019](https://github.com/lampepfl/dotty/pull/14019)
170
+
* An implementation of the proposal is available as a pull request at [https://github.com/scala/scala3/pull/14019](https://github.com/scala/scala3/pull/14019)
Copy file name to clipboardExpand all lines: _sips/sips/fewer-braces.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,7 @@ If there would be code using these idioms, it can be rewritten quite simply to a
131
131
132
132
### Tooling
133
133
134
-
Since this affects parsing, the scalameta parser and any other parser used in an IDE will also need to be updated. The necessary changes to the Scala 3 parser were made here: https://github.com/lampepfl/dotty/pull/15273/commits. The commit that embodies the core change set is here: https://github.com/lampepfl/dotty/pull/15273/commits/421bdd660b0456c2ff1ae386f032c41bb1e0212a.
134
+
Since this affects parsing, the scalameta parser and any other parser used in an IDE will also need to be updated. The necessary changes to the Scala 3 parser were made here: https://github.com/scala/scala3/pull/15273/commits. The commit that embodies the core change set is here: https://github.com/scala/scala3/pull/15273/commits/421bdd660b0456c2ff1ae386f032c41bb1e0212a.
135
135
136
136
### Handling Edge Cases
137
137
@@ -288,7 +288,7 @@ This is a tradeoff between conciseness and consistency. In the interest of minim
288
288
289
289
- Doc page for proposed change: https://dotty.epfl.ch/docs/reference/other-new-features/indentation.html#variant-indentation-marker--for-arguments
290
290
291
-
- Merged PR implementing the proposal under experimental flag: https://github.com/lampepfl/dotty/pull/15273/commits/421bdd660b0456c2ff1ae386f032c41bb1e0212a
291
+
- Merged PR implementing the proposal under experimental flag: https://github.com/scala/scala3/pull/15273/commits/421bdd660b0456c2ff1ae386f032c41bb1e0212a
292
292
293
293
- Latest discussion on contributors (there were several before when we discussed indentation in general): https://contributors.scala-lang.org/t/make-fewerbraces-available-outside-snapshot-releases/5024/166
Copy file name to clipboardExpand all lines: _sips/sips/interpolation-quote-escape.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -129,4 +129,4 @@ proposals.
129
129
[^4]: https://github.com/scala/bug/issues/6476#issuecomment-292412577 "@retronym said: +1 to s"$"". Because it doesn't compile today, we don't risk changing the meaning of existing programs."
Copy file name to clipboardExpand all lines: _sips/sips/match-types-spec.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ It is however not possible to guarantee that property for *all* cases, since the
95
95
#### Preamble
96
96
97
97
Some of the concepts mentioned here are defined in the existing Scala 3 specification draft.
98
-
That draft can be found in the dotty repository at https://github.com/lampepfl/dotty/tree/main/docs/_spec.
98
+
That draft can be found in the dotty repository at https://github.com/scala/scala3/tree/main/docs/_spec.
99
99
It is not rendered anywhere yet, though.
100
100
101
101
Here are some of the relevant concepts that are perhaps lesser-known:
@@ -583,7 +583,7 @@ Notable prior work related to this proposal includes:
583
583
-[Current reference page for Scala 3 match types](https://dotty.epfl.ch/docs/reference/new-types/match-types.html)
584
584
-[Abstractions for Type-Level Programming](https://infoscience.epfl.ch/record/294024), Olivier Blanvillain, Chapter 4 (Match Types)
585
585
-["Pre-Sip" discussion in the Contributors forum](https://contributors.scala-lang.org/t/pre-sip-proper-specification-for-match-types/6265) (submitted at the same time as this SIP document)
586
-
-[PR with the proposed implementation](https://github.com/lampepfl/dotty/pull/18262)
586
+
-[PR with the proposed implementation](https://github.com/scala/scala3/pull/18262)
Copy file name to clipboardExpand all lines: _sips/sips/multi-source-extension-overloads.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,7 +226,7 @@ A number of alternatives were mentioned in [the Contributors thread](https://con
226
226
## Related work
227
227
228
228
-[Contributors thread acting as de facto Pre-SIP](https://contributors.scala-lang.org/t/change-shadowing-mechanism-of-extension-methods-for-on-par-implicit-class-behavior/5831)
229
-
-[Pull Request in dotty](https://github.com/lampepfl/dotty/pull/17050) to support it under an experimental import
229
+
-[Pull Request in dotty](https://github.com/scala/scala3/pull/17050) to support it under an experimental import
0 commit comments