Skip to content

Commit b6a9755

Browse files
committed
Fix broken links
1 parent d1072f0 commit b6a9755

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

_ja/scala3/new-in-scala3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Scala 3 のメタプログラミングについてもっと知りたいかたは
120120
[meta-quotes]: {% link _overviews/scala3-macros/tutorial/quotes.md %}
121121
[meta-reflection]: {% link _overviews/scala3-macros/tutorial/reflection.md %}
122122

123-
[oo-explicit-null]: {{ site.scala3ref }}/other-new-features/explicit-nulls.html
123+
[oo-explicit-null]: {{ site.scala3ref }}/experimental/explicit-nulls.html
124124
[oo-safe-init]: {{ site.scala3ref }}/other-new-features/safe-initialization.html
125125
[oo-trait-parameters]: {{ site.scala3ref }}/other-new-features/trait-parameters.html
126126
[oo-open]: {{ site.scala3ref }}/other-new-features/open-classes.html

_overviews/scala3-book/ca-summary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ A few more advanced topics aren’t covered here, including:
2727
Those topics are discussed in detail in the [Reference documentation][ref].
2828

2929

30-
[ref]: {{ site.scala3ref }}/contextual.html
30+
[ref]: {{ site.scala3ref }}/contextual

_overviews/scala3-book/first-look-at-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ Alternatives to `null` are discussed in the [Functional Programming chapter][fp]
276276
[interpolation]: {% link _overviews/core/string-interpolation.md %}
277277
[fp]: {% link _overviews/scala3-book/fp-intro.md %}
278278
[option-api]: https://scala-lang.org/api/3.x/scala/Option.html
279-
[safe-null]: {{ site.scala3ref }}/other-new-features/explicit-nulls.html
279+
[safe-null]: {{ site.scala3ref }}/experimental/explicit-nulls.html

_overviews/scala3-book/scala-features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ As Heather Miller states, Scala is considered to be a [strong, statically-typed
137137
- You can refactor your code with confidence
138138
- Method type declarations tell readers what the method does, and help serve as documentation
139139
- Scalability and maintainability: types help ensure correctness across arbitrarily large applications and development teams
140-
- Strong typing in combination with excellent inference enables mechanisms like [contextual abstraction]({{ site.scala3ref }}/contextual.html) that allows you to omit boilerplate code. Often, this boilerplate code can be inferred by the compiler, based on type definitions and a given context.
140+
- Strong typing in combination with excellent inference enables mechanisms like [contextual abstraction]({{ site.scala3ref }}/contextual) that allows you to omit boilerplate code. Often, this boilerplate code can be inferred by the compiler, based on type definitions and a given context.
141141

142142
{% comment %}
143143
In that list:
@@ -242,7 +242,7 @@ In Scala, a context parameter directly leads to an inferred argument term that c
242242
Use cases for this concept include implementing [type classes]({% link _overviews/scala3-book/ca-type-classes.md %}), establishing context, dependency injection, expressing capabilities, computing new types, and proving relationships between them.
243243

244244
Scala 3 makes this process more clear than ever before.
245-
Read about contextual abstractions in the [Reference documentation]({{ site.scala3ref }}/contextual.html).
245+
Read about contextual abstractions in the [Reference documentation]({{ site.scala3ref }}/contextual).
246246

247247

248248
### Client & server

_overviews/scala3-book/why-scala-3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ Hopefully you’ll discover more great Scala features as you use the language.
428428
[given]: {% link _overviews/scala3-book/ca-given-using-clauses.md %}
429429
[contextual]: {% link _overviews/scala3-book/ca-contextual-abstractions-intro.md %}
430430
[reference]: {{ site.scala3ref }}
431-
[dropped]: {{ site.scala3ref }}/dropped-features.html
432-
[changed]: {{ site.scala3ref }}/changed-features.html
433-
[added]:{{ site.scala3ref }}/other-new-features.html
431+
[dropped]: {{ site.scala3ref }}/dropped-features
432+
[changed]: {{ site.scala3ref }}/changed-features
433+
[added]:{{ site.scala3ref }}/other-new-features
434434

435435
[union-types]: {% link _overviews/scala3-book/types-union.md %}
436436
[opaque-types]: {% link _overviews/scala3-book/types-opaque-types.md %}

_overviews/scala3-macros/other-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ num: 9
99
* [Migration status][migration-status]
1010

1111
## Dotty documentation
12-
- [Dotty Documentation]({{ site.scala3ref }}/metaprogramming.html)
12+
- [Dotty Documentation]({{ site.scala3ref }}/metaprogramming)
1313
- [Macros: The Plan For Scala 3](https://www.scala-lang.org/blog/2018/04/30/in-a-nutshell.html)
1414
- [Examples](https://github.com/lampepfl/dotty-macro-examples) - a repository with small, self-contained examples of various tasks done with Dotty macros.
1515

_overviews/scala3-migration/compatibility-classpath.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The TASTy reader supports all the traditional language features as well as the f
6767
- [Intersection Types]({{ site.scala3ref }}/new-types/intersection-types.html)
6868
- [Opaque Type Aliases]({{ site.scala3ref }}/other-new-features/opaques.html)
6969
- [Type Lambdas]({{ site.scala3ref }}/new-types/type-lambdas.html)
70-
- [Contextual Abstractions]({{ site.scala3ref }}/contextual.html) (new syntax)
70+
- [Contextual Abstractions]({{ site.scala3ref }}/contextual) (new syntax)
7171
- [Open Classes]({{ site.scala3ref }}/other-new-features/open-classes.html) (and inheritance of super traits)
7272
- [Export Clauses]({{ site.scala3ref }}/other-new-features/export.html)
7373

_overviews/scala3-migration/incompat-contextual-abstractions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ previous-page: incompat-dropped-features
77
next-page: incompat-other-changes
88
---
99

10-
The redesign of [contextual abstractions]({{ site.scala3ref }}/contextual.html) brings some incompatibilities.
10+
The redesign of [contextual abstractions]({{ site.scala3ref }}/contextual) brings some incompatibilities.
1111

1212
|Incompatibility|Scala 2.13|Scala 3 Migration Rewrite|Scalafix Rule|Runtime Incompatibiltiy|
1313
|--- |--- |--- |--- |--- |

_overviews/scala3-migration/incompatibility-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Some features are dropped to simplify the language.
5959

6060
### Contextual Abstractions
6161

62-
The redesign of [contextual abstractions]({{ site.scala3ref }}/contextual.html) brings some well defined incompatibilities.
62+
The redesign of [contextual abstractions]({{ site.scala3ref }}/contextual) brings some well defined incompatibilities.
6363

6464
|Incompatibility|Scala 2.13|Scala 3 Migration Rewrite|Scalafix Rule|Runtime Incompatibility|
6565
|--- |--- |--- |--- |--- |

_sips/minutes/2019-12-18-sip-minutes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ New thread: [SIP public review: Open classes](https://contributors.scala-lang.or
161161

162162
### Review the "Explicit nulls" SIP
163163

164-
Thread: <{{ site.scala3ref }}/other-new-features/explicit-nulls.html>
164+
Thread: <{{ site.scala3ref }}/experimental/explicit-nulls.html>
165165

166166
Sébastien championing and presenting.
167167

_zh-cn/scala3/new-in-scala3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Scala 2 中的宏只是一个实验性的功能,而 Scala 3 则为元编程提
118118
[meta-quotes]: {% link _overviews/scala3-macros/tutorial/quotes.md %}
119119
[meta-reflection]: {% link _overviews/scala3-macros/tutorial/reflection.md %}
120120

121-
[oo-explicit-null]: {{ site.scala3ref }}/other-new-features/explicit-nulls.html
121+
[oo-explicit-null]: {{ site.scala3ref }}/experimental/explicit-nulls.html
122122
[oo-safe-init]: {{ site.scala3ref }}/other-new-features/safe-initialization.html
123123
[oo-trait-parameters]: {{ site.scala3ref }}/other-new-features/trait-parameters.html
124124
[oo-open]: {{ site.scala3ref }}/other-new-features/open-classes.html

scala3/new-in-scala3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ If you want to learn more about metaprogramming in Scala 3, we invite you to tak
113113
[migration]: {% link _overviews/scala3-migration/compatibility-intro.md %}
114114
[contribution]: {% link _overviews/scala3-contribution/contribution-intro.md %}
115115

116-
[implicits]: {{ site.scala3ref }}/contextual.html
116+
[implicits]: {{ site.scala3ref }}/contextual
117117
[contextual-using]: {{ site.scala3ref }}/contextual/using-clauses.html
118118
[contextual-givens]: {{ site.scala3ref }}/contextual/givens.html
119119
[contextual-extension]: {{ site.scala3ref }}/contextual/extension-methods.html
@@ -131,7 +131,7 @@ If you want to learn more about metaprogramming in Scala 3, we invite you to tak
131131
[meta-quotes]: {% link _overviews/scala3-macros/tutorial/quotes.md %}
132132
[meta-reflection]: {% link _overviews/scala3-macros/tutorial/reflection.md %}
133133

134-
[oo-explicit-null]: {{ site.scala3ref }}/other-new-features/explicit-nulls.html
134+
[oo-explicit-null]: {{ site.scala3ref }}/experimental/explicit-nulls.html
135135
[oo-safe-init]: {{ site.scala3ref }}/other-new-features/safe-initialization.html
136136
[oo-trait-parameters]: {{ site.scala3ref }}/other-new-features/trait-parameters.html
137137
[oo-open]: {{ site.scala3ref }}/other-new-features/open-classes.html

0 commit comments

Comments
 (0)