Skip to content

Commit 5769941

Browse files
committed
Fix remaining broken links
1 parent 4c52788 commit 5769941

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

_overviews/scala3-macros/tutorial/quotes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Quoted Code
44
num: 5
55

66
previous-page: macros
7-
next-page: tasty-reflection
7+
next-page: reflection
88
---
99

1010
## Code blocks
@@ -388,5 +388,5 @@ def setForCode[T: Type](using Quotes): Expr[Set[T]] =
388388
The difference is that in this scenario we do start expanding the macro before the implicit search failure and we can write arbitrary code to handle the case where it is not found.
389389
Here we used `HashSet` and another valid implementation that does not need the `Ordering`.
390390

391-
[macros]: {% link _overviews/scala3-macros/tutorial/macros.md %}
391+
[macros]: {% link _overviews/scala3-macros/tutorial/macros.md %}
392392
[quotes]: {% link _overviews/scala3-macros/tutorial/quotes.md %}

scala3/contribute-to-docs.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In general, there is many different ways you could help us:
2626
Typically, each of the different documentation projects contain links (and so does this document, in the table-of-contents pane) to edit and improve them. Additionally, below we provide you with the necessary information to get started.
2727

2828
## Scala 3 Book
29-
The [Scala 3 Book](/scala3/book) is being written by Alvin Alexander and provides an overview over all the important features of Scala 3. It targets readers, which are new to Scala.
29+
The [Scala 3 Book][scala3-book] is being written by Alvin Alexander and provides an overview over all the important features of Scala 3. It targets readers, which are new to Scala.
3030

3131
- [Sources](https://github.com/scala/docs.scala-lang/tree/master/_overviews/scala3-book)
3232
- [Issues](https://github.com/scala/docs.scala-lang/issues)
@@ -67,18 +67,21 @@ a tour presenting the migration tools, and detailed migration guides.
6767
- [Issues](https://github.com/scalacenter/scala-3-migration-guide/issues)
6868

6969

70-
[best-practices]: /scala3/guides/macros/best-practices
71-
[compiletime]: /scala3/guides/macros/tutorial/compiletime
72-
[cross-compilation]: https://scalacenter.github.io/scala-3-migration-guide/docs/macros/migration-tutorial.html#cross-building
73-
[inline]: /scala3/guides/macros/tutorial/inline
74-
[macros]: /scala3/guides/macros/tutorial/macros
75-
[migration-status]: https://scalacenter.github.io/scala-3-migration-guide/docs/macros/macro-libraries.html
76-
[quotes]: /scala3/guides/macros/tutorial/quotes
77-
[tasty]: /scala3/guides/macros/tutorial/tasty-reflection
78-
[reflection-api]: https://dotty.epfl.ch/api/scala/quoted.html
79-
8070
## Scala 3 Language Reference
8171
The [Dotty reference](https://dotty.epfl.ch/docs/reference/overview.html) will evolve into the Scala 3 language, containing a formal presentation and detailed technical information about the various features of the language.
8272

8373
- [Sources](https://github.com/lampepfl/dotty/tree/master/docs/docs/reference)
8474
- [Issues](https://github.com/lampepfl/dotty/issues)
75+
76+
77+
[scala3-book]: {% link _overviews/scala3-book/introduction.md %}
78+
79+
[best-practices]: {% link _overviews/scala3-macros/best-practices.md %}
80+
[compiletime]: {% link _overviews/scala3-macros/tutorial/compiletime.md %}
81+
[cross-compilation]: https://scalacenter.github.io/scala-3-migration-guide/docs/macros/migration-tutorial.html#cross-building
82+
[inline]: {% link _overviews/scala3-macros/tutorial/inline.md %}
83+
[macros]: {% link _overviews/scala3-macros/tutorial/macros.md %}
84+
[migration-status]: https://scalacenter.github.io/scala-3-migration-guide/docs/macros/migration-status.html
85+
[quotes]: {% link _overviews/scala3-macros/tutorial/quotes.md %}
86+
[tasty]: {% link _overviews/scala3-macros/tutorial/reflection.md %}
87+
[reflection-api]: https://dotty.epfl.ch/api/scala/quoted.html

0 commit comments

Comments
 (0)